import type { ImportSymbol } from "./import-symbol.js"; import { symbols } from "@bufbuild/protobuf/codegenv2"; export type RuntimeImports = mapRecord; export declare function createRuntimeImports(bootstrapWkt: boolean): RuntimeImports; type mapRecord> = { [P in keyof T]: T[P] extends symbolInfo ? ImportSymbol : T[P] extends Record ? mapRecord : never; }; declare function mapRecord>(record: T, bootstrapWkt: boolean): mapRecord; type symbolInfo = { readonly typeOnly: boolean; readonly from: string; readonly bootstrapWktFrom: string; }; export {};