import { ReactNode } from 'react'; declare type Props = { children: ReactNode; title?: ReactNode; showMenu?: boolean; }; /** A phone wrapper to showcase content in a mobile style */ export declare const Phone: import("react").ForwardRefExoticComponent>; export {};