import { TypographyType } from '../../../types/styleType';
type ButtonSizeType = Record<'xs' | 's' | 'm' | 'l' | 'xl', {
    height: number;
    textType: TypographyType;
    padding: number;
    radius: number;
}>;
export declare const BUTTON_OPTION: ButtonSizeType;
export declare const BUTTON_COLOR: {
    fill: import("@emotion/utils").SerializedStyles;
    line: import("@emotion/utils").SerializedStyles;
    common: import("@emotion/utils").SerializedStyles;
};
type ButtonIconType = Record<'s' | 'm' | 'l', {
    size: number;
    iconSize?: number;
    radius: number;
}>;
export declare const BUTTON_ICON_OPTION: ButtonIconType;
export declare const BUTTON_ICON_COLOR: {
    s: import("@emotion/utils").SerializedStyles;
    m: import("@emotion/utils").SerializedStyles;
    l: import("@emotion/utils").SerializedStyles;
};
export {};
