import { Address } from 'viem'; import { PrexClient } from '../prex-client'; export declare class NicknameAction { private client; constructor(client: PrexClient); updateNickName({ nickName, from, }: { nickName: string; from?: Address; }): Promise; updateNickNameWithSharedWallet({ nickName, owners, nonce, sharedWalletAddress, }: { nickName: string; owners: Address[]; nonce: number; sharedWalletAddress: Address; }): Promise; saveProfilePicture({ image, from }: { image: File; from?: Address; }): Promise<{ path: string; fullPath: string; url: string; }>; } //# sourceMappingURL=nickname.d.ts.map