/// declare type Obj = Record; export declare type BytesInput = string | string[] | number | number[] | Buffer | ArrayBuffer | Uint8Array | Uint16Array | Uint32Array | Obj | Obj[]; /** * Convert the input to a Uint8Array. * * @param encoder the TextEncoder instance to use */ export declare const getBytes: (encoder: TextEncoder) => (input: BytesInput) => Uint8Array; export {};