type OpenApiSchema = { openapi?: string; swagger?: string; components?: { schemas?: Record; }; paths?: Record>; }; type OpenApiOperation = { operationId?: string; tags?: string[]; requestBody?: { content?: Record; }; responses?: Record; }>; }; interface StormFetchOpenApiGenerateOptions { clientImport?: string; clientName?: string; serviceName?: string; groupByTags?: boolean; } declare const generateStormFetchServicesFromOpenApi: (spec: OpenApiSchema, options?: StormFetchOpenApiGenerateOptions) => string; export { generateStormFetchServicesFromOpenApi };