/**
 * Detects whether an object is a map of OpenAPI ExampleObjects
 * https://spec.openapis.org/oas/v3.1.0#example-object
 * We consider it a named-examples map if it's a non-array object and at least one entry
 * is an object containing one of the explicit ExampleObject keys.
 */
export declare function isNamedExamplesMap(values: unknown): values is Record<string, unknown>;
