import { ElementStateColors, ElementStates } from '../../../types'; /** * Type guard to check if a value is an ElementStateColors object * * @param value - The value to check * @returns True if the value is an ElementStateColors object, false if it's a string * @internal */ export declare const isElementStateColors: (value: string | ElementStateColors) => value is ElementStateColors; /** * @internal */ export declare const getElementStateColor: (value: string | ElementStateColors, state: ElementStates) => string;