import { DropdownMenuProps } from './DropdownMenu'; export interface DropdownProps extends Pick { /** The trigger for the dropdown menu. Can be a JSX Element or simply a `string`. */ dropdownLabel?: React.ReactNode; /** List of links and actions. You can use a combination of `DropdownItem` and `DropdownDivider` components. */ dropdownItems: React.ReactNode; /** Additional class name for the dropdown container. */ className?: string; } /** * Dropdown is toggleable, contextual overlay for displaying lists of links and actions. * * There are 2 components for rendering the list you can pass to the `dropdownItems` prop: * - `DropdownItem`: The trigger that handles dropdown selection. * - `DropdownDivider`: A visual separator for dropdown items. */ export declare const Dropdown: import('../../atoms/SkeletonTemplate').SkeletonTemplateComponent<{ dropdownLabel?: import('react').ReactNode; dropdownItems: React.ReactNode; className?: string | undefined; menuHeader?: string | undefined; menuPosition?: "bottom-left" | "bottom-right" | "top-left" | "top-right" | undefined; menuWidth?: "wide" | undefined; delayMs?: number | undefined; isLoading?: boolean | undefined; }>;