import * as React from "react"; declare type DisplayProps = { display?: "block" | "inline" | "inline-block" | "flex"; }; declare type Props = React.PropsWithChildren; declare const Mobile: ({ display, children }: Props) => JSX.Element; export default Mobile;