interface TAccountEntry { name: string; linkedApiToken: string; identificationToken: string; } export declare function readConfig(): { linkedApiToken: string; identificationToken: string; } | undefined; export declare function addAccount(account: TAccountEntry): void; export declare function removeCurrentAccount(): TAccountEntry | undefined; export declare function removeAllAccounts(): number; export declare function listAccounts(): Array; export declare function setCurrentAccount(identificationToken: string): boolean; export declare function findAccountByName(nameQuery: string): TAccountEntry | undefined; export declare function updateAccountTokens(oldIdentificationToken: string, newTokens: { name: string; linkedApiToken: string; identificationToken: string; }): boolean; export declare function renameAccount(identificationToken: string, newName: string): boolean; export declare function deleteConfig(): boolean; export declare function getConfigFilePath(): string; export {}; //# sourceMappingURL=config-store.d.ts.map