import React from 'react';
import type { SpacingProps } from '../../../../shared/types';
export type FormElementProps = Omit<React.HTMLProps<HTMLFormElement>, 'ref' | 'autoComplete'> & SpacingProps & {
    ref?: React.RefObject<HTMLFormElement>;
    /**
     * Set to `false` to allow the browser's native form submission.
     */
    preventDefaultOnSubmit?: boolean;
};
export default function FormElement(props: FormElementProps): import("react/jsx-runtime").JSX.Element;
