import type{PapaParseApi}from'./papaparse-loader.js';export declare const DEFAULT_MAX_DELIMITED_CELLS=1000000;export declare const DEFAULT_MAX_DELIMITED_ERRORS=100;export interface DelimitedParseLimits{readonly maxRows?:number;readonly maxColumns?:number;readonly maxCells?:number;readonly maxErrors?:number;}export interface DelimitedGridResult{data:unknown[][];errors:unknown[];}export interface DelimitedRecordResult{fields:string[];rows:Record[];errors:unknown[];} /** Parses raw delimited rows with row, column, aggregate-cell, and diagnostic budgets enforced * before materialization and again from PapaParse's streaming callback. */ export declare function parseDelimitedGrid(parser:PapaParseApi,text:string,limits?:DelimitedParseLimits):DelimitedGridResult; /** Parses header-keyed records with row, field, aggregate-cell, and diagnostic budgets enforced * before materialization and again from PapaParse's streaming callback. */ export declare function parseDelimitedRecords(parser:PapaParseApi,text:string,limits?:DelimitedParseLimits):DelimitedRecordResult;export declare function delimitedColumnCount(rows:readonly unknown[][]):number;export declare function delimitedCellText(value:unknown):string;