export interface JsonRepairCoreOptions {
    onData: (chunk: string) => void;
    chunkSize?: number;
    bufferSize?: number;
}
export interface JsonRepairCore {
    transform: (chunk: string) => void;
    flush: () => void;
}
export declare function jsonrepairCore({ onData, bufferSize, chunkSize }: JsonRepairCoreOptions): JsonRepairCore;
//# sourceMappingURL=core.d.ts.map