import { IconType } from '@autoguru/icons'; import { ComponentProps, FunctionComponent, ReactNode } from 'react'; import { Button } from '../Button/Button'; import { Flyout } from '../Flyout/Flyout'; type ButtonProps = Omit, 'is' | 'children' | 'onClick'>; type FlyoutProps = Pick, 'alignment'>; export interface DropDownProps extends ButtonProps, FlyoutProps { children: ReactNode; label: string; icon?: IconType; isOpen?: boolean; onOpenChange?: (isOpen: boolean) => void; onClick?: ComponentProps['onClick']; } export declare const DropDown: FunctionComponent; export {}; //# sourceMappingURL=DropDown.d.ts.map