export interface MoodTheme {
    background: string;
    color: string;
    brightness: number;
}
export declare function useMoodLighting(mood: string, timeBased?: boolean): MoodTheme;
