import { JsonSchema } from '../helpers/exampleSchema'; interface ExamplesProps { schema: JsonSchema; /** A real example value declared in the spec (OpenAPI media type `example`/`examples`, or an AsyncAPI message example), shown as-is instead of auto-generating one when present. */ providedExample?: unknown; } export declare function Examples({ schema, providedExample }: ExamplesProps): import("react").JSX.Element | null; export {};