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