export interface FABMenuItem { icon: string; label: string; onClick?: () => void; } export interface FABMenuProps { icon?: string; closeIcon?: string; label?: string; items: FABMenuItem[]; } /** Expressive FAB Menu — pressing the FAB fans out a staggered list of mini-FABs with labels. */ export declare function FABMenu({ icon, closeIcon, label, items }: FABMenuProps): import("react/jsx-runtime").JSX.Element;