export type Theme = 'yellow' | 'black';
export declare const getTheme: (theme: Theme) => {
    readonly bgColor: "bg-saffron";
    readonly textColor: "text-black";
    readonly textColorActive: "text-black";
} | {
    readonly bgColor: "bg-black";
    readonly textColor: "text-black";
    readonly textColorActive: "text-white";
};
