export declare type Caller = (title: string) => CallerResult;
export declare type CallerResult = {
    newChunk: (data: string) => void;
    done?: (logs: string[]) => void;
};
export default function intoBlocks(caller: Caller, done?: (data: string[]) => void): (data: string) => void;
