import { ReactElement } from 'react'; import { FormSubmitFunction } from '@cezembre/forms'; export interface UserEditorFields { first_name?: string; last_name?: string; } export interface UserEditorProps { initialValues?: UserEditorFields; onSubmit?: FormSubmitFunction; } export declare function UserEditor({ initialValues, onSubmit }: UserEditorProps): ReactElement;