import { type ButtonHTMLAttributes, type ReactNode } from 'react'; /** * CMP-0024 FAB — floating action button. */ export type FABProps = Omit, 'children'> & { readonly icon: ReactNode; readonly label: string; readonly position?: 'bottom-right' | 'bottom-left'; }; export declare const FAB: import("react").ForwardRefExoticComponent, "children"> & { readonly icon: ReactNode; readonly label: string; readonly position?: "bottom-right" | "bottom-left"; } & import("react").RefAttributes>; //# sourceMappingURL=FAB.d.ts.map