export declare type ThemeType = '' | 'dark' | 'light';
export declare const DATA__HAS_MENU: {
    menu: string;
};
export declare const DATA__THEME_DARK: {
    theme: string;
};
export declare const DATA__THEME_LIGHT: {
    theme: string;
};
export declare class ThemeModel {
    name: ThemeType;
    properties: any;
    constructor(name: ThemeType, props: any);
    getRgb(color: string, alpha?: number): string;
}
export declare const light: ThemeModel;
export declare const dark: ThemeModel;
