import { FormEventHandler, ReactNode } from 'react';
declare type FormProps = {
    onSubmit: FormEventHandler;
    title?: string;
    children: ReactNode;
};
export declare const Form: ({ onSubmit, title, children }: FormProps) => JSX.Element;
export {};
