declare const THEMES: {
    success: {
        fill: string;
        color: string;
        border: string;
    };
    danger: {
        fill: string;
        color: string;
        border: string;
    };
    note: {
        fill: string;
        color: string;
        border: string;
    };
    disabled: {
        fill: string;
        color: string;
        border: string;
    };
};

export { THEMES, THEMES as default };
