import * as React from 'react'; import { BreakpointKey } from './types'; export interface WithBreakpointProps { breakpoint: BreakpointKey; } export declare function withBreakpoint(WrappedComponent: React.ComponentType): { (props: Omit): React.JSX.Element; displayName: string; };