export interface CSSComposition {
    get: (name: string, value: string, theme?: string, modifier?: string) => string;
    variable: (name: string, theme?: string, modifier?: string) => string;
    variables: (object: Record<string, string | object>, theme?: string, modifier?: string) => Record<string, string>;
}
export declare const useCSS: (namespace?: string) => CSSComposition;
