export type RefProp = (v: T) => void; declare function createRef(input?: { ref?: any; } | (() => RefProp | T | undefined | null)): { (value: T): void; ref: T; /** * @alias */ current: T; }; export default createRef; //# sourceMappingURL=createRef.d.ts.map