export declare class Config { private stateDir; constructor(stateDir: string); getAll: () => Promise>; get: (key: string) => Promise; set: (key: string, value: any) => Promise; }