interface IRef { current: T | undefined; (val: T): void; } export default function useRef(): IRef; export {};