/** * This hook is used to determine if the current screen size is larger than * the specific NYPL breakpoint values. The returned value is an object with * boolean values for each breakpoint. */ declare const useNYPLBreakpoints: () => { isLargerThanSmall: any; isLargerThanMedium: any; isLargerThanLarge: any; isLargerThanXLarge: any; isLargerThanSmallMobile: any; isLargerThanLargeMobile: any; isLargerThanSmallTablet: any; isLargerThanLargeTablet: any; isLargerThanMobile: any; isLargerThanTablet: any; }; export default useNYPLBreakpoints;