import type { ReactNode } from 'react'; import type { FormProps as FinalFormProps } from 'react-final-form'; import type { AnyObject } from 'final-form'; import type { Props as FormProps } from './FormRenderer'; export declare type Props = FinalFormProps & { disableScrollOnError?: boolean; autoComplete?: HTMLFormElement['autocomplete']; successSubmitMessage?: ReactNode; failedSubmitMessage?: ReactNode; scrollOffsetTop?: number; layout?: 'horizontal' | 'vertical'; labelWidth?: FormProps['labelWidth']; className?: string; 'data-testid'?: string; }; export declare const Form: { (props: Props): JSX.Element; displayName: string; }; export default Form; //# sourceMappingURL=Form.d.ts.map