import type { ThemeGeneratorProps, ColorSet, SemanticColors } from './themeGenerator.types'; /** * Generates a set of semantic color values that correspond with the given colors. */ export declare const createSemanticColor: (semanticColors: SemanticColors, canvasColor: string) => ColorSet; export declare function themeGenerator(props: ThemeGeneratorProps): { textColor: string; canvasColor: string; } & ColorSet; //# sourceMappingURL=themeGenerator.d.ts.map