//#region src/hooks/tap-ref.d.ts
declare namespace tapRef {
  interface RefObject<T> {
    current: T;
  }
}
declare function tapRef<T>(initialValue: T): tapRef.RefObject<T>;
declare function tapRef<T = undefined>(): tapRef.RefObject<T | undefined>;
//#endregion
export { tapRef };
//# sourceMappingURL=tap-ref.d.ts.map