import React from 'react'; import type { OpenAPIParameterLocation } from '@redocly/openapi-docs'; export type ServerOverrideValue = string | { default: string; enum: string[]; }; export type ServerOverrides = Record; export type RequestAndResponseType = { request: Record; }; export type OperationParameters = Partial>; export type OperationIdentifier = { operationId?: string; pointer?: string; }; export type ReplayOpenApiProps = { descriptionFile?: string; operationId?: string; pointer?: string; operation?: { path: string; method: string; }; exampleKey?: string; mimeType?: string; parameters?: Record; requestBody?: any; options?: any; environment?: string; environments?: Record>; hideOtherSecuritySchemes?: boolean; } & OperationIdentifier; export declare const ReplayOpenApi: (props: ReplayOpenApiProps) => React.JSX.Element; //# sourceMappingURL=replay-openapi.d.ts.map