export declare class StaticSchemeClass { defaultColor: string; type: string; map: Record; constructor(map: Record); getColor(letter: string): string; } type BaseColorFunction = (base: string, ...args: unknown[]) => string; export type ColorStructure = { init: () => void; run: BaseColorFunction; map: Record; }; type ColorFunction = ColorStructure | BaseColorFunction; export declare class DynSchemeClass { type: string; opt?: unknown; getColor: BaseColorFunction; reset?: () => void; map?: Record; constructor(fun: ColorFunction, opt?: unknown); } export {}; //# sourceMappingURL=schemeclass.d.ts.map