import { TagProps } from '../@declaration/_';
export declare const ColorObjects: {
    key: TagProps.ThemeColor;
    isBrand: boolean;
    isAvocado: boolean;
}[];
export declare const SetThemeColorTag: () => void;
declare const DarkmodeColors: {
    light: string;
    dark: string;
    dim: string;
    auto(): string;
};
declare const ThemeColors: {
    [key in TagProps.ThemeColor]: {
        alfa(alfa?: number): string;
        isBrand: boolean;
        isAvocado: boolean;
    };
};
export { DarkmodeColors, ThemeColors };
