/**
 * by star_ss
 * package: @thestarweb//trove-lang-tool
 */
export interface LangInfoItem {
    key: string;
    value: string;
}
export declare function read(data: Uint8Array): LangInfoItem[];
export declare function write(data: LangInfoItem[]): Uint8Array;
declare const _default: {
    read: typeof read;
    write: typeof write;
};
export default _default;
