import { ReactElement } from 'react'; import { FormSubmitFunction } from '@cezembre/forms'; import { Image } from '@fridaygame/client'; export interface WalletEditorFields { name?: string; } export interface WalletEditorProps { initialValues?: WalletEditorFields; onSubmit?: FormSubmitFunction; picture?: Image; onUploadPicture?: (icon: File) => unknown; } export declare function WalletEditor({ initialValues, onSubmit, picture, onUploadPicture, }: WalletEditorProps): ReactElement;