import 'reflect-metadata'; import { CssVariableType } from '../cssVariableType'; export declare const cssVariable: (name: string, type?: string) => PropertyDecorator; export declare const getCssVariableMetadata: (target: object, propertyKey: string) => { name: string; type: CssVariableType | null; };