import { ReactElement } from 'react'; import { ButtonBaseProps } from '../base/buttonBase'; /** * Props for {@link Fab}. * Extends {@link ButtonBaseProps}. * * @category Fab */ export interface FabButtonProps extends Omit { /** Icon rendered inside the FAB. */ icon: ReactElement; } /** * Floating action button used for primary contextual actions. * * Use to highlight the main action on a screen, such as create, add, * or compose. Supports regular and extended variants (with label). * * @category Fab * @function * @param props - All FAB props inherited from {@link ButtonBase}. * * @example * } /> * * @example * } label="Create" /> */ export declare const Fab: import('react').ForwardRefExoticComponent>;