/** * The useSizeDetect function returns an object containing the current window's innerWidth and innerHeight, * as well as the documentElement's clientWidth and clientHeight. These values are updated whenever a resize event is fired. * * @example const { * clientHeight, * clientWidth, * innerHeight, * innerWidth, * } = useSizeDetect() * * @return An object with the following properties: { * clientHeight, * clientWidth, * innerHeight, * innerWidth, * } * */ export declare const useSizeDetect: () => { clientHeight: number; clientWidth: number; innerHeight: number; innerWidth: number; };