import { ImportFileInput, ParsedImportFile } from "../../types"; export declare const Parameterize: (URL: string, datapoint: string, replacement: string) => string; export declare function buildQueryString(params: Record): string; export declare const extractPathParams: (path: string) => Record; export declare const extractQueryParams: (url: string) => Record; export declare const extractURLPath: (url: string) => string; export declare function parseImportFile(file: ImportFileInput): ParsedImportFile;