import React, { PropsWithChildren } from 'react'; type FlowerClientProps = PropsWithChildren<{ name: string; destroyOnUnmount?: boolean; initialState?: Record; }>; export declare const FlowerForm: ({ children, name, destroyOnUnmount, initialState }: FlowerClientProps) => React.JSX.Element; export {};