import type { ExampleObject, MediaTypeObject, ParameterObject, RequestBodyObject } from '@scalar/workspace-store/schemas/v3.2/strict/openapi-document'; /** * Resolve an example value for a parameter or requestBody from either `examples` or `content.*.examples`. * Or the [deprecated] `example` field. * If no exampleKey is provided it will fallback to the first example in the examples object then the [deprecated] * `example` field. * When the parameter carries both its own `examples`/`example` and a `content` object, the parameter-level value * takes priority to preserve edits saved by older clients before they are migrated into the media type. * Used both for send-request and generating code snippets. */ export declare const getExample: (param: ParameterObject | RequestBodyObject | MediaTypeObject, exampleName: string | undefined, contentType: string | undefined) => ExampleObject | undefined; //# sourceMappingURL=get-example.d.ts.map