interface IConfig { type?: string; key?: string; value?: any; } export default function (options: IConfig): Promise; export {};