declare function createElementRef<T extends HTMLElement = HTMLElement>(props?: {
    ref?: unknown;
}): {
    (value: T): void;
    ref: T;
    current: T;
};
export default createElementRef;
//# sourceMappingURL=createElementRef.d.ts.map