/** * Fluent Grow - Built-in Color Presets * ------------------------------------ * Provides a curated set of brand/semantic palettes inspired by modern design * systems. Each palette is expressed in OKLCH for superior perceptual uniformity. */ import type { PaletteDefinition } from './palette'; import { ColorManager, type ColorThemeDefinition } from './index'; export type FluentPaletteName = 'primary' | 'secondary' | 'neutral' | 'success' | 'info' | 'warning' | 'danger'; export type FluentPalettes = Record; export declare const FLUENT_PALETTES: FluentPalettes; export declare function createFluentTheme(name?: string): ColorThemeDefinition; export declare function registerFluentPalettes(manager: ColorManager, apply?: boolean, name?: string): void; //# sourceMappingURL=presets.d.ts.map