import { Placement } from '@floating-ui/dom'; export type Item = { label: string; name?: string; selected?: boolean; onClick: (arg0: any) => void; }; type Items = Array; type Props = { text?: string; size?: string; variant?: string; title?: string; items: Items; icon?: JSX.Element; caret?: boolean; placement?: Placement; /** * Accessible name for the trigger. Set this when the trigger is icon-only * (no visible `text`) so it still has a name; falls back to `title` in that * case. Overrides the label reference the underlying select would set. */ 'aria-label'?: string; }; declare function Dropdown({ items, text, icon, size, variant, title, caret, placement, 'aria-label': ariaLabel, ...rest }: Props): import("react/jsx-runtime").JSX.Element; export { Dropdown }; //# sourceMappingURL=Dropdown.component.d.ts.map