import { ScaledSize } from 'react-native'; import { IBreakpoints } from './types'; export declare const useBreakpoints: (options?: Partial) => IUseBreakpointResult; interface IUseBreakpointResult { isMobile: boolean; isTablet: boolean; isDesktop: boolean; isMobileOrTablet: boolean; window: ScaledSize; screen: ScaledSize; isHydrated: boolean; } export {};