import React from 'react';
import type { SpacingProps } from '../../../../shared/types';
export type Props = Omit<React.HTMLProps<HTMLFormElement>, 'ref' | 'autoComplete'> & SpacingProps;
export default function FormElement(props: Props): import("react/jsx-runtime").JSX.Element;
