import type { DefaultProps, Placement } from '../../types'; import type { MergeRight } from '../../utilities'; import { type PopoverProps } from '../popover/popover'; export type DropdownProps = MergeRight, { /** * The placement of the dropdown * @default bottom-end */ placement?: Placement; }>; /** * Dropdown component, used to display a list of options. * * @example with TriggerContext * * Dropdown trigger * * Dropdown * * * Option * * * * * * @example without TriggerContext * * * Heading * * * Item * * * */ export declare const Dropdown: import("react").ForwardRefExoticComponent, "placement"> & { /** * The placement of the dropdown * @default bottom-end */ placement?: Placement; } & import("react").RefAttributes>; //# sourceMappingURL=dropdown.d.ts.map