import type { DescMessage, MessageInitShape, MessageShape } from "@bufbuild/protobuf"; /** * Takes a partial protobuf messages of the * specified message type as input, and returns full instances. */ export declare function normalize(desc: Desc, message: MessageInitShape): MessageShape; /** * Takes an AsyncIterable of partial protobuf messages of the * specified message type as input, and yields full instances. */ export declare function normalizeIterable(desc: Desc, input: AsyncIterable>): AsyncIterable>;