import { ParserOptions, ColumnValue } from '../types/library'; interface ProcessorType { process(filterFunc: Function | null, line: string): void; getResults(): ColumnValue[][]; } export declare function generateProcessor({ requestedColumns, sortBy, ascending, limit, prefixes, start, end, }: ParserOptions): ProcessorType; export {};