export default createModel; declare namespace createModel { export { createOne }; export { createMany }; } declare function createOne(attrs?: {}): Promise; declare function createMany(attrs?: any[]): Promise<{ items: any[]; errors: any[]; hasError: boolean; }>;