export type MenuButtonProps = {
    size?: "large" | "small" | "medium";
    drop?: boolean;
    options?: TypeOptionsProps[];
    menuAlignment?: "bottom" | "bottom start" | "bottom end";
    variations?: "combo button" | "default" | "overflow";
    label?: string;
    kind?: "primary" | "secondary" | "tertiary" | "ghost" | "dangerPrimary" | "dangerTertiary" | "dangerGhost";
};
type TypeOptionsProps = {
    label?: string;
    href?: string;
    onClick?: () => void;
    icon?: string;
};
export declare const MenuButton: (props: MenuButtonProps) => import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=index.d.ts.map