/**
 * Read part of a file on disc.
 * @throws 'EPERM' if the file is not readable.
 */
export default function readFileChunk(filename: string, onlyFirstLine?: boolean): Promise<string>;
