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