import { LifeCycleObserver } from '@loopback/core'; import { DbSchemaHelperService } from '../services'; import { SchemaStore } from '../services/schema.store'; import { TableSearchService } from '../services/search/table-search.service'; import { DbQueryConfig } from '../types'; export declare class TableSeedObserver implements LifeCycleObserver { private readonly config; private readonly dbSchemaHelper; private readonly schemaStore; private readonly tableSearchService; constructor(config: DbQueryConfig, dbSchemaHelper: DbSchemaHelperService, schemaStore: SchemaStore, tableSearchService: TableSearchService); start(): Promise; }