import { Data } from '../data.js'; import { Struct, TypeMap } from '../type.js'; /** @ignore */ declare const kParent: unique symbol; /** @ignore */ declare const kRowIndex: unique symbol; export declare type StructRowProxy = StructRow & { [P in keyof T]: T[P]['TValue']; } & { [key: symbol]: any; }; export declare class StructRow { private [kRowIndex]; private [kParent]; constructor(parent: Data>, rowIndex: number); toArray(): T[string]["TValue"][]; toJSON(): { [P in string & keyof T]: T[P]["TValue"]; }; toString(): string; [Symbol.iterator](): IterableIterator<[ keyof T, { [P in keyof T]: T[P]['TValue'] | null; }[keyof T] ]>; } export {};