/// /** * Slices a buffer as you would an array, using the byte indices. * @param buffer The buffer to slice. * @returns A buffer containing the resulting bytes. */ export declare const sliceBuffer: (buffer: BufferSource, start?: number | undefined, end?: number | undefined) => Buffer;