declare const CreateProfile: (lens_handler: string, profilePictureUri: any, token: string) => Promise; declare const GetDefaultProfile: (eth_address: string) => Promise; declare const GetProfilesByIds: (profileIds: Array) => Promise; declare const GetProfilesOwnedBy: (ownedBy: Array) => Promise; declare const GetProfilesByHandle: (handles: Array) => Promise; declare const GetProfilesWhoMirrored: (publicationId: string) => Promise; declare const GetProfileById: (profileId: string) => Promise; declare const GetProfileByHandle: (handle: string) => Promise; declare const GetOnChainIdentity: (profileId: string) => Promise; export { CreateProfile, GetDefaultProfile, GetProfilesByIds, GetProfilesOwnedBy, GetProfilesByHandle, GetProfilesWhoMirrored, GetProfileById, GetProfileByHandle, GetOnChainIdentity, };