import { TransformApiArgs } from '@jswork/http-rest-config'; import type { TemplateType } from '@jswork/http-rest-config'; interface HttpSchemaOptions { adapter?: string; harmony?: boolean; priority?: number; transformApi?: (args: TransformApiArgs) => Promise; dynamicApi?: (apis: Record, ...args: any[]) => Promise; templates?: TemplateType; [key: string]: any; } declare const httpSchema: (inConfig: any, inOptions?: HttpSchemaOptions) => any; export default httpSchema;