import React from 'react';
import { FabProps as MuiFabProps } from '@mui/material';
export interface FabProps extends MuiFabProps {
    /**
     * The tooltip text to display
     */
    tooltip?: string;
    /**
     * Whether the FAB should pulse
     */
    pulse?: boolean;
    /**
     * The position of the FAB when fixed
     */
    position?: 'bottom-right' | 'bottom-left' | 'top-right' | 'top-left';
    /**
     * Whether the FAB should be fixed positioned
     */
    fixed?: boolean;
}
export declare const Fab: React.FC<FabProps>;
//# sourceMappingURL=Fab.d.ts.map