import { CSV } from "../common/index"; declare const csvInterpolateSync: typeof CSV.csvInterpolateSync, getCsvParams: typeof CSV.getCsvParams; export interface CsvInterpolateResult { final: CSV.FinalResult.Row[]; csvParams: CSV.GetCsvParams.Result; } /** * 通过调用子进程对csv文件进行interpolation * @param option 选项 * @returns */ export declare function csvInterpolate(option: CSV.GetCsvParams.Option): Promise; export { csvInterpolateSync, getCsvParams };