type RedirectEntry = { channel: string; id: string; ts: number; }; export declare const redirectStorage: { set(channel: string, id: string): void; get(): RedirectEntry | null; matches(channel: string, id: string): boolean; clear(): void; }; export {};