import type { Type } from './index.ts'; import type { Field } from '../fields/field.ts'; export declare class Primitive implements Type { jsType: string; pbType: string; constructor(pbType: string, jsType: string); init(): void; getDecoder(field: Field): string; getStreamingDecoder(field: Field, prefix: string): string; getValueTest(field: Field, accessor: string): string; getEncoder(field: Field, accessor: string): string; } //# sourceMappingURL=primitive.d.ts.map