export declare function useWindowSize(options?: {
    throttleMs?: number;
}): {
    width: number;
    height: number;
};
export declare function throttle<T extends (...args: any[]) => void>(func: T, threshold?: number, scope?: any): T;
export declare function usePrevious(value: any): undefined;
