import type { FullCsv2JsonOptions } from './types';
export declare const Csv2Json: (options: FullCsv2JsonOptions) => {
    convert: (data: string) => object[];
};
