import { PropsWithChildren, default as React } from 'react'; export interface DropdownProps { /** * Event emitted when the Dropdown is closed. */ onDismiss?(): void; /** * A boolean value that represents the state of the Dropdown. */ isOpen?: boolean; /** * ID to identify Dropdown. */ id?: string; } declare const Dropdown: ({ children, isOpen: isOpenControlled, onDismiss, id, }: PropsWithChildren) => React.JSX.Element; export default Dropdown; //# sourceMappingURL=Dropdown.d.ts.map