import type BootstrapPathManager from './bootstrap-path-manager'; import type DistPathManager from './dist-path-manager'; import type { Introspection as DataSourceMongoIntrospection } from '@forestadmin/datasource-mongo'; import type { SupportedIntrospection as DataSourceSQLIntrospection } from '@forestadmin/datasource-sql'; export type Datasources = Array<{ introspection: DataSourceSQLIntrospection | DataSourceMongoIntrospection; datasourceSuffix: string; datasourceId: number; }>; export declare function updateTypings(datasources: Datasources, bootstrapPathManager: BootstrapPathManager): Promise; export declare function updateTypingsWithCustomizations(datasources: Datasources, distPathManager: DistPathManager, bootstrapPathManager: BootstrapPathManager): Promise; //# sourceMappingURL=update-typings.d.ts.map