export declare function resetSecret(key: string): void; export declare const getSecret: { (key: string): Promise; clear(key: string): void; clearAll(): void; forceSet(key: string, value: Promise): void; getAllKeys(): string[]; get(key: string): Promise | undefined; }; export declare function setSecret(key: string, value: string): void;