import type { AccountId, Profile, SocialImage } from "./types.js";
declare function getNetworkFromAccountId(accountId: string): "mainnet" | "testnet";
declare function getImageUrl(image: SocialImage | undefined, fallback?: string): string;
declare function defaultGetProfile(accountId: AccountId, apiKey?: string): Promise<Profile | null>;
export { defaultGetProfile, getImageUrl, getNetworkFromAccountId };
//# sourceMappingURL=profile.d.ts.map