import { type Field, type Row } from '../../generated/query_pb'; export interface Value { typ: number; val: Uint8Array; } /** * @description Converts proto3 rows to an array of Value arrays * @see https://github.com/vitessio/vitess/blob/v20.0.2/go/sqltypes/proto3.go#L83 */ export declare function proto3ToRows({ fields, rows, }: { fields: Array; rows: Array; }): Array>;