import Datastore from 'nedb-promises';
export declare const getConfigIns: () => Datastore;
export declare function readConfig(key: string): Promise<{
    _id: string;
    createdAt?: Date | undefined;
    updatedAt?: Date | undefined;
}[]>;
export declare function writeConfig(key: string, value?: string): Promise<void>;
