/** * `useBreakpoint` is a hook used to determine if the document matches the media * query string (or media query list). It will listen to the breakpoints specified * and will return a boolean value indicating if this media query is met or not. * @public */ declare function useBreakpoint( /** Media Query you want to test, eg '(min-width: 800px)' */ query: string, /** Default value (fallback value to support SSR) * @defaultValue false */ ssrInitialValue?: boolean): boolean; /** * `useBreakpoint` is a hook used to determine if the document matches the media * query string (or media query list). It will listen to the breakpoints specified * and will return a boolean value indicating if this media query is met or not. * @public */ declare function useBreakpoint( /** Media Queries you want to test, eg '[(min-width: 400px), (min-width: 800px)]' */ queries: string[], /** Default values (fallback values to support SSR) * @defaultValue [] */ ssrInitialValue?: boolean[]): boolean[]; export { useBreakpoint };