import { BytesCodec, FixedBytesCodec } from "../base"; /** * a helper function to create custom codec of `array SomeType [byte; n]` * @param codec */ export declare function byteArrayOf(codec: BytesCodec & { byteLength: number; }): FixedBytesCodec; /** * a helper function to create custom codec of `byte` * @param codec */ export declare function byteOf(codec: BytesCodec): FixedBytesCodec; /** * a helper function to create custom codec of `vector Bytes ` * @param codec */ export declare function byteVecOf(codec: BytesCodec): BytesCodec; //# sourceMappingURL=helper.d.ts.map