import { CoerceToUint8ArrayInput } from './coercion.mjs'; /** * Accepted input Types for DataView coercion. * */ type ToDataViewInput = CoerceToUint8ArrayInput; /** * Convert data to {@link DataView}. * * @param input The data to convert to `DataView`. * @returns The `DataView` of the given data. Throws a new Exception on failure. */ declare const toDataView: (input: ToDataViewInput) => DataView; export { type ToDataViewInput, toDataView };