import { DynamicModule } from '@nestjs/common'; import { NestGdatastoreOptions, NestGdatastoreAsyncOptions } from './interfaces'; export declare class NestGdatastoreModule { /** * Registers a configured NestGdatastore Module for import into the current module */ static register(options: NestGdatastoreOptions): DynamicModule; /** * Registers a configured NestGdatastore Module for import into the current module * using dynamic options (factory, etc) */ static registerAsync(dbOptions: NestGdatastoreAsyncOptions): DynamicModule; private static createProviders; private static createOptionsProvider; }