import { type ButtonProps } from '@pitrix/portal-ui'; type Item = { label: string; value: string; disabled?: boolean; }; type DropList = { menus: Item[]; onSelectMenu?: (item: Item) => void; checkable?: boolean; }; export declare const ButtonDropMenu: (props: ButtonProps & DropList) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=button-drop-menu.d.ts.map