import { FC, PropsWithChildren, Ref } from 'react'; type FormProps = { action?: (data: FormData) => void | Promise; onSubmit?: (data: FormData) => void | Promise; ref?: Ref; } & PropsWithChildren; export declare const Form: FC; export {}; //# sourceMappingURL=Form.d.ts.map