/// <reference types="react" />
import { ThemeType } from './types';
export declare type Themes = {
    dark: Theme;
    light: Theme;
};
export interface Color {
    paper: string;
    text: string;
    active: string;
    white: string;
    red: string;
    yellow: string;
    blue: string;
    black: string;
    green: string;
    cyan: string;
}
export interface Colors {
    light: Color;
    dark: Color;
}
export interface Theme {
    button: React.CSSProperties;
    link: React.CSSProperties;
    colors: Colors[ThemeType];
}
export declare const themes: Themes;
