import { BookType, RegistryProps } from '@gridsheet/core'; export declare const useBrowser: () => { window: Window & typeof globalThis; document: Document; } | { window: null; document: null; }; export declare const useDebounce: (value: T, delay?: number) => T; export declare const useDebounceCallback: (callback: (...args: any[]) => void, delay?: number) => (...args: any[]) => void; export declare const useBook: (props?: RegistryProps) => BookType; //# sourceMappingURL=hooks.d.ts.map