/** * Convert a UTF-8 encoded buffer into a string. This will read the full buffer as UTF-8 encoded * string and return anything before the first NULL character. The output text is trimmed of any * preceding or following spaces. * * @param {Buffer} buffer - The input buffer */ export declare const getStringFromBuffer: (buffer: Uint8Array) => string;