import { Result } from "@adviser/cement"; export type ToUInt8Plain = Uint8Array | ArrayBuffer | ArrayBufferView; export type ToUInt8Async = ToUInt8Plain | Blob; export type ToUInt8 = ToUInt8Plain | Result; export type AsyncToUInt8 = ToUInt8Async | Result | Promise | Promise>; export declare function coerceIntoUint8(raw: ToUInt8): Result; export declare function asyncCoerceIntoUint8(raw: AsyncToUInt8): Promise>; //# sourceMappingURL=coerce-uint8.d.ts.map