export type Colors = {
    accent: string;
    warning: string;
    success: string;
    error: string;
    primary: string;
    secondary: string;
    muted: string;
    bright: string;
    shade: string;
    tint: string;
    dark: string;
    strawberry: string;
    blueberry: string;
};
export type Theme = {
    colors: Colors;
};
export declare const theme: Theme;
