export interface Colors {
    primary: string;
    secondary: string;
    border: string;
    link: string;
    icon: string;
}
export interface Theme {
    colors: Colors;
    button: {
        cornerRadius: string;
    };
}
export declare const theme: {
    light: Theme;
    dark: Theme;
};
