///
import { Schema, Document } from "mongoose";
import "missing-native-js-functions";
declare const _default: {
init: (defaultOpts?: any) => Promise;
getAll: () => DefaultOptions;
setAll: (val: any) => Promise;
};
export default _default;
export declare const DefaultOptions: {
api: {};
gateway: {};
voice: {};
};
export interface DefaultOptions extends Document {
api?: any;
gateway?: any;
voice?: any;
}
export declare const ConfigSchema: Schema, import("mongoose").Model>, undefined>;
export declare const ConfigModel: import("mongoose").Model;