import { FC } from 'react';
import { Alignment } from './PopoverMenu';
declare const ButtonDensity: FC<ButtonDensityProps>;
export declare type ButtonDensityProps = {
    label: string;
    compactLabel: string;
    regularLabel: string;
    comfortableLabel: string;
    handleCallback?: Function;
    alignMenu?: Alignment;
    disabled?: boolean;
};
export default ButtonDensity;
