export declare class Config {
    peer: string;
    accounts: Array<string>;
    static load(): Promise<Config>;
    static addAccounts(accounts: Array<string>): Promise<Config>;
    static removeAccounts(accounts: Array<string>): Promise<Config>;
    static clearAccounts(): Promise<Config>;
    static delete(): Promise<void>;
}
