///
import { type FabProps as MuiFabProps } from '@mui/material';
import { type WithoutEmotionSpecific } from '../types';
import { type FabColor } from './types';
export type FabProps = Omit, 'color' | 'variant'> & {
color?: FabColor;
variant?: 'circular' | 'square';
};
export declare const Fab: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;