export type ToastType = keyof typeof TOAST_OPTION;
export type ToastPositionType = keyof typeof TOAST_POSITIONS;
export declare const TOAST_SPACING = "20px";
export declare const TOAST_POSITIONS: {
    topLeft: import("@emotion/utils").SerializedStyles;
    topRight: import("@emotion/utils").SerializedStyles;
    bottomLeft: import("@emotion/utils").SerializedStyles;
    bottomRight: import("@emotion/utils").SerializedStyles;
};
export declare const TOAST_OPTION: {
    info: {
        primary: string;
        secondary: string;
        icon: string;
    };
    success: {
        primary: string;
        secondary: string;
        icon: string;
    };
    warning: {
        primary: string;
        secondary: string;
        icon: string;
    };
    error: {
        primary: string;
        secondary: string;
        icon: string;
    };
};
export declare const getToastColor: (type: ToastType, isFill?: boolean) => import("@emotion/utils").SerializedStyles;
