import type { ExampleObject, ParameterObject } from '../schemas/v3.2/strict/openapi-document.js'; /** A parameter example with its wire representation kept distinct from data. */ type ParameterExample = { example: ExampleObject | undefined; value: unknown; /** Parameter-level serialized text already includes URI encoding and query/cookie names. */ serialized: boolean; /** Media-level text still needs the parameter name and URI encoding. */ mediaSerialized: boolean; }; /** Resolve new and legacy example fields without serializing parameter-level wire text again. */ export declare const getParameterExample: (parameter: ParameterObject, exampleName?: string) => ParameterExample; export {}; //# sourceMappingURL=get-parameter-example.d.ts.map