/** A class responsible for storing a redirect value in localStorage and cleanup afterward. */ export declare class RedirectHelper { private readonly REDIRECT_VALUE; private get storage(); handlePreRedirect(state?: string): void; handlePostRedirect(callback?: (state?: string) => void): void; get didRedirect(): boolean; private get stateValue(); private generateRandomString; }