declare type ColorStateObject = { colorsScheme: 'light' | 'dark'; toneValueHover: number; toneValueActive: number; toneValueFocus: number; opacityDisable: number; }; export interface StateFunctions { stateHover(colorHover: string): string; stateActive(colorActive: string): string; stateFocus(colorFocus: string): string; stateDisabled(colorDisabled: string): string; } export declare function getStateFunctions(theme: ColorStateObject): StateFunctions; export {};