import { AuthIdentity } from '@dcl/crypto'; type IdentitySagaConfig = { authURL: string; identityExpirationInMinutes?: number; }; export declare function createIdentitySaga(options: IdentitySagaConfig): () => Generator, void, unknown>; export declare function getIdentityOrRedirect(): Generator; export declare function setAuxAddress(address: string | null): void; export {};