import { HSLColor } from '../../../utilities/color-types'; import { Theme, ThemeVariant, ThemeContext, ThemeProviderContext } from '../types'; export declare function setColors(theme: Theme | undefined): string[][] | undefined; export declare function needsVariant(name: string): boolean; export declare function setTextColor(name: string, variant?: ThemeVariant): string[]; export declare function setTheme(color: string | HSLColor, baseName: string, key: string, variant: 'light' | 'dark'): string[][]; export declare function createThemeContext(theme?: ThemeContext): ThemeProviderContext;