import { BoxProps } from '../box'; type BoxTagProps = Required>['props']; type FormTagProps = Omit; interface Props extends Omit, 'props' | 'tag'> { props?: FormTagProps; onSubmit: (obj: T, e: React.ChangeEvent) => void; } export default function Form(props: Props): import("react/jsx-runtime").JSX.Element; export {};