import { Breakpoint } from '../styles/createBreakpoints'; import { WithWidth } from '../withWidth'; export interface WithMobileDialogOptions { breakpoint: Breakpoint; } export interface InjectedProps { fullScreen?: boolean; } export default function withMobileDialog
( options?: WithMobileDialogOptions, ): ( component: React.ComponentType
>, ) => React.ComponentType
>;