UNPKG

@clayui/drop-down

Version:
11 lines (10 loc) 486 B
/** * SPDX-FileCopyrightText: © 2019 Liferay, Inc. <https://liferay.com> * SPDX-License-Identifier: BSD-3-Clause */ import React from 'react'; import type { ICollectionProps } from '@clayui/core'; export interface IProps<T> extends Omit<ICollectionProps<T, unknown>, 'virtualize'>, Omit<React.HTMLAttributes<HTMLUListElement>, 'children'> { } declare const ItemList: React.ForwardRefExoticComponent<IProps<unknown> & React.RefAttributes<HTMLUListElement>>; export default ItemList;