import { Breakpoint } from '../styles/createBreakpoints'; import { WithWidthProps } from '../utils/withWidth'; export interface WithMobileDialogOptions { breakpoint: Breakpoint; } export default function withMobileDialog

( options: WithMobileDialogOptions ): ( component: React.ComponentType

> ) => React.ComponentClass

>;