import type * as React from "react"; import type { SpaceProps } from "styled-system"; interface FormProps extends SpaceProps, React.HTMLProps { } declare const Form: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit & { ref?: React.Ref; }, never>> & string & Omit<({ title, children, ...props }: FormProps) => import("react/jsx-runtime").JSX.Element, keyof React.Component>; export default Form;