UNPKG

fomantic-ui-react

Version:

Fomantic-UI React -- A React Component Library.

22 lines (21 loc) 1.27 kB
/// <reference types="react" /> import './style/index.js'; export * from './type'; export declare const Dropdown: { ({ as, text, fluid, className, selection, name, value, placeholder, on, search, clearable, noResultsMessage, options, onClick, children, ...props }: import("./type").DropdownProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>; displayName: string; Menu: { ({ as, scrolling, scrollhint, animation, duration, className, open, onStart, onShow, onHide, onComplete, children, ...props }: import("./type").DropdownMenuProps): JSX.Element; displayName: string; }; Item: { ({ as, active, selected, className, text, description, icon, value, unfilterable, divider, children, ...props }: import("./type").DropdownItemProps): JSX.Element; displayName: string; }; Divider: { ({ as, className, children, ...props }: import("./type").DropdownDividerProps): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>; displayName: string; }; SearchInput: import("react").ForwardRefExoticComponent<import("./type").DropdownSearchInputProps & import("react").RefAttributes<HTMLInputElement>>; }; export default Dropdown;