import { Datasource } from "../../../src/types/index.js"; import ProjectClientBase from "../../../src/project/ProjectClientBase.js"; /** * Reimport one or more datasources into project. */ export declare function reimportDatasources(projectClient: C, extraOptions: { /** Alternative path to look for datasources than default. useful for testing */ newDatasourcePath?: string; /** Alternative path to store transformed data. useful for testing */ newDstPath?: string; /** string or regular expression to express with datasources to reimport, matching on datasourceId */ matcher?: string[]; }): Promise;