import { PublicPersonProfile } from '@stacks/profile'; import { MethodParams, MethodResult } from '../methods'; import { ProfileUpdateRequestOptions, StacksProvider } from '../types'; /** @deprecated No-op. Tokens are not needed for latest RPC endpoints. */ export declare function getDefaultProfileUpdateRequestOptions(_options: ProfileUpdateRequestOptions): void; /** @deprecated No-op. Tokens are not needed for latest RPC endpoints. */ export declare const makeProfileUpdateToken: (_options: ProfileUpdateRequestOptions) => Promise; declare const METHOD: "stx_updateProfile"; /** @internal */ export declare const LEGACY_UPDATE_PROFILE_OPTIONS_MAP: (options: ProfileUpdateRequestOptions) => MethodParams; /** @internal */ export declare const LEGACY_UPDATE_PROFILE_RESPONSE_MAP: (response: MethodResult) => PublicPersonProfile; /** Compatible interface with previous Connect `openProfileUpdateRequestPopup` version, but using new SIP-030 RPC method. */ export declare function openProfileUpdateRequestPopup(options: ProfileUpdateRequestOptions, provider?: StacksProvider): void; export {};