import preact from "preact"; export declare class APIKeysControl extends preact.Component { render(): preact.JSX.Element; } export declare const getAPIKey: { (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 setAPIKey(key: string, value: string): void; export declare class ManageAPIKeys extends preact.Component { render(): string; }