export declare const bytes: (s: string) => Uint8Array; export declare const byte: (s: string) => number; export declare const decodeBytes: (b: Uint8Array) => string; export declare const appendBytesArray: (a: Uint8Array, b: Uint8Array) => Uint8Array; export declare const indexFunc: (s: Uint8Array, f: (r: number) => boolean) => number; export declare const indexRune: (s: Uint8Array, r: number) => number; export declare const lastIndexFunc: (s: Uint8Array, f: (r: number) => boolean) => number; export declare const trimLeftFunc: (s: Uint8Array, f: (r: number) => boolean) => Uint8Array; export declare const trimRightFunc: (s: Uint8Array, f: (r: number) => boolean) => Uint8Array; export declare const trimFunc: (s: Uint8Array, f: (r: number) => boolean) => Uint8Array; export declare const equal: (a: Uint8Array, b: Uint8Array) => boolean; export declare const cutover: (n: number) => number; export declare const index: (s: Uint8Array, sep: Uint8Array) => number; export declare const bytesLength: (n: number) => number; export declare const bytesArray: (n: number) => Uint8Array; export declare const bytesSlice: (a: Uint8Array, start: number, end?: number | undefined) => Uint8Array;