import React from 'react'; import { FormViewProps } from './form.view-props'; export declare function FormClient(props: FromContainerProps): import("react/jsx-runtime").JSX.Element; export interface FromContainerProps { children: React.ReactNode; className: string | undefined; viewProps: FormViewProps; formDataAttributes: { [key: string]: string; }; }