export declare const isCssVariableTokenValue: (key: string, value: any) => value is string; export declare const resolveTokenValue: (theme: Record, value: string) => string; /** * Expands an array or object syntax responsive style. * * @example * expandResponsive({ mx: [1, 2] }) * // or * expandResponsive({ mx: { base: 1, sm: 2 } }) * * // => { mx: 1, "@media(min-width:)": { mx: 2 } } */ export declare const expandResponsive: (styles: Record) => (theme: Record) => Record;