import type { Chunk, String } from "../metadata.js";
export declare class VLenUTF8 {
    #private;
    readonly kind = "array_to_bytes";
    constructor(shape: number[]);
    static fromConfig(_: unknown, meta: {
        shape: number[];
    }): VLenUTF8;
    encode(_chunk: Chunk<String>): Uint8Array;
    decode(bytes: Uint8Array): Chunk<String>;
}
