import type { Component } from "../../serverTypes"; interface CreateDataSourcesProps { component: Component; dryRun: boolean; verbose: boolean; sourceDir: string; destinationDir: string; } export declare const createDataSources: ({ component, dryRun, verbose, sourceDir, destinationDir, }: CreateDataSourcesProps) => Promise<{ dataSourceIndex: string | void; dataSources: (string | void)[]; }>; export {};