import type { ThirdwebClient } from "../client/client.js"; import type { SocialProfile } from "./types.js"; /** * Fetches the wallet's available social profiles. * @param args - The arguments to use when fetching the social profiles. * @param args.address - The wallet address to fetch the social profiles for. * @param args.client - The Thirdweb client. * @returns A promise resolving to the array of social profiles for the given address. * * @example * ```ts * import { getSocialProfiles } from "thirdweb/social"; * const profiles = await getSocialProfiles({ * address: "0x...", * client, * }); * ``` * @social * @beta */ export declare function getSocialProfiles(args: { address: string; client: ThirdwebClient; }): Promise; //# sourceMappingURL=profiles.d.ts.map