import { IProfileUpdateOptions } from '../../types/args/ProfileArgs'; /** * Configuration for profile update. * * @public */ export declare class ProfileUpdateOptions implements IProfileUpdateOptions { description?: string; location?: string; name?: string; url?: string; /** * @param options - The options specifying the profile fields to update. */ constructor(options: IProfileUpdateOptions); }