export declare enum ThemeVariant { professional = "professional" } export interface CreateThemeOptions { variant?: ThemeVariant; palette?: string; theme?: Partial; } export declare function createTheme(options?: CreateThemeOptions): T;