export declare class Fab { private host; /** Optionnal, an icon name from the material icons set*/ icon: string; /** * Optionnal, a text label * * If provided, it will render as an extended FAB */ label: string; /** * Optional, specifies the FAB size */ size: 'medium' | 'small'; /** * Optional, animates the FAB out of view. * * When set to false, the FAB will return to view. */ hidden: boolean; componentWillLoad(): void; componentDidLoad(): void; renderIcon(): any; render(): any; }