import { InstructionsTypeParams } from '../types/InstructionsTypeParams'; export declare function parseCSV(csv: string): Record[]; export declare function filterRows(data: Record[], params: InstructionsTypeParams): Record[]; export declare function toCamelCaseKeys(row: Record): Record;