import React from 'react'; export declare const useCssVariable: (name: string, fallbackValue: string, ref?: React.RefObject) => string; export declare const cssVariableEnhance:

R) = any>({ variable, fallback, prop, map, }: { variable: string; prop: P; fallback: F; map?: M; }) => (props: T) => T & { [key in P]: M extends (value: string) => R ? R : F; };