export type TypeUrl = string; export type ProtoFieldName = string; /** Record for select annotations of the fields for a protobuf message. */ export interface FieldAnnotationsRecord { typeUrlFromField?: Record; 'gogoproto.nullable'?: Record; 'gogoproto.embed'?: Record; 'amino.dont_omitempty'?: Record; } /** Map for select annotations of the fields for a protobuf message */ export type FieldAnnotations = Map>; /** * A map from typeUrl to Map> data. * XXX we should codegen this data rather than manually updating it. */ export declare const defaultAnnotationsFromTypeUrl: Map; export declare const scalarMakersFromType: Map unknown>; //# sourceMappingURL=type-url-annotations.d.ts.map