import { type BrandVariants, type Theme } from '@fluentui/react-components'; import type { BrandVariant } from './types'; export declare const brandVariants: Record; /** * Creates a light theme for a specific brand variant */ export declare function createITechLightTheme(brand?: BrandVariant): Theme; /** * Creates a dark theme for a specific brand variant */ export declare function createITechDarkTheme(brand?: BrandVariant): Theme; /** * Creates both light and dark themes for a brand variant */ export declare function createITechThemes(brand?: BrandVariant): { light: Theme; dark: Theme; }; export declare const iTechLightTheme: Theme; export declare const iTechDarkTheme: Theme; export declare const iTechThemes: { light: Theme; dark: Theme; }; export declare const allBrandThemes: { brand_1: { light: Theme; dark: Theme; }; irepo: { light: Theme; dark: Theme; }; blue: { light: Theme; dark: Theme; }; vivid_blue: { light: Theme; dark: Theme; }; }; /** * Get theme by brand and mode */ export declare function getTheme(brand: BrandVariant, mode: 'light' | 'dark'): Theme; /** * Get all available brand names */ export declare function getBrandVariants(): BrandVariant[]; //# sourceMappingURL=theme.d.ts.map