import { PropType } from 'vue'; export declare const actionFabEventNames: { select: string; }; export interface ActionItem { name: string; image: string; amount: number; isSpacer: boolean; appendText?: string; } export declare const getActionFabEmits: () => string[]; export declare const getActionFabProps: () => { top: { type: BooleanConstructor; default: boolean; }; bottom: { type: BooleanConstructor; default: boolean; }; left: { type: BooleanConstructor; default: boolean; }; right: { type: BooleanConstructor; default: boolean; }; hAction: { type: BooleanConstructor; default: boolean; }; vAction: { type: BooleanConstructor; default: boolean; }; icon: StringConstructor; buttonType: StringConstructor; items: { type: PropType>; }; };