import { Breakpoint } from '../styles/createBreakpoints'; export interface WithWidthOptions { resizeInterval: number; } export interface WithWidthProps { width: Breakpoint; } export function isWidthUp( breakpoint: Breakpoint, screenWidth: number, inclusive?: boolean ): boolean; export default function withWidth
( options?: WithWidthOptions ): ( component: React.ComponentType
) => React.ComponentClass
;