import type { JSX } from 'react'; import { type DropdownItem, type DropdownProps } from '../Dropdown/Dropdown.js'; import type { IconName } from '../Icon/Icon.js'; interface ButtonDropdownProps extends Omit, 'renderTrigger'> { id?: string; className?: string; iconLeft?: IconName; disabled?: boolean; sneaky?: boolean; children?: React.ReactNode; } export declare function ButtonDropdown({ id, className, iconLeft, sneaky, disabled, children, ...args }: ButtonDropdownProps): JSX.Element; export {};