import { AuthIdentity } from '@dcl/crypto'; export declare const NO_IDENTITY_FOUND_ERROR_MESSAGE = "No identity found"; type CreateProfileSagaOptions = { getIdentity: () => AuthIdentity | undefined; peerUrl: string; peerWithNoGbCollectorUrl?: string; }; export declare function createProfileSaga({ getIdentity, peerUrl, peerWithNoGbCollectorUrl }: CreateProfileSagaOptions): () => Generator, void, unknown>; export {};