import { DOMFactoryExt } from '../factory'; declare const refSymbol: unique symbol; export type Ref = { current?: T; [refSymbol]: typeof refSymbol; }; export declare const ref: () => Ref; export declare function isRef(param: unknown): param is Ref; export declare const refExt: DOMFactoryExt; export {};