export interface Theme {
    'theme-background': string;
    'theme-background-light': string;
    'theme-background-lighter': string;
    'theme-background-transparent': string;
    'theme-border': string;
    'theme-border-input': string;
    'theme-copy': string;
    'theme-copy-light': string;
}
export declare const light: Theme;
export declare const dark: Theme;
export declare const theme: {
    dark: Theme;
    light: Theme;
};
