export default function loadDataNodeQuery(table: string, files: string[], options?: { fileType?: "csv" | "dsv" | "json" | "parquet" | "excel"; autoDetect?: boolean; limit?: number; fileName?: boolean; unifyColumns?: boolean; columnTypes?: { [key: string]: string; }; header?: boolean; allText?: boolean; delim?: string; skip?: number; nullPadding?: boolean; ignoreErrors?: boolean; compression?: "none" | "gzip" | "zstd"; jsonFormat?: "unstructured" | "newlineDelimited" | "array"; records?: boolean; sheet?: string; }): string;