import { type Field } from '../../generated/query_pb'; import type { Value } from './proto3ToRows'; interface Result { fields: Array; rows: Array>; } /** * @description Converts proto3 query result to an array of records * @see https://github.com/planetscale/airbyte-source/blob/v1.32.0/cmd/internal/types.go#L134 */ export declare function queryResultToRecords(qr: Result): Record[]; export {};