/** * Represents a `polymedia_profile::profile::Profile` Sui object */ export type PolymediaProfile = { id: string; name: string; imageUrl: string; description: string; data: unknown; owner: string; }; export type LookupResults = typeof BcsLookupResults.$inferType; export declare const BcsLookupResults: import("@mysten/bcs").BcsType<{ lookup_addr: string; profile_addr: string; }[], Iterable<{ lookup_addr: string; profile_addr: string; }> & { length: number; }>;