import type { PropertyDeclaration } from 'lit'; export declare const useProperty2: (name: string, initialValue: T, options?: PropertyDeclaration) => void; export declare const useProperty: (name: string, initialValue: T, options?: PropertyDeclaration) => readonly [{ readonly value: T; }, (value: T) => void]; export declare const useState: (name: string, initialValue: T, options?: PropertyDeclaration) => readonly [{ readonly value: T; }, (value: T) => void]; //# sourceMappingURL=use-property.d.ts.map