import type { ISchema } from '@formily/json-schema'; export interface IApi { key: string; title: string; method: 'get' | 'GET' | 'POST' | 'post'; url: string; requestSchema: { [key: string]: ISchema; }; returnSchema: ISchema; requestMockSchema?: any; returnMockSchema?: any; mockName?: string; result?: any; } export declare class OpenApi { apis: IApi[]; }