import { ButtonHTMLAttributes } from 'react';
export type FABSize = 'sm' | 'md' | 'lg';
export type FABColor = 'primary' | 'secondary' | 'tertiary' | 'surface';
export interface FABProps extends ButtonHTMLAttributes {
icon: string;
/** when present, FAB becomes Extended */
label?: string;
size?: FABSize;
color?: FABColor;
}
export declare const FAB: import('react').ForwardRefExoticComponent>;