import { type Parameter } from './RTD'; import type * as http from './HTTP'; import type * as syntax from './RTD/syntax'; import type * as core from '@toa.io/core'; export declare abstract class Mapping { static create(query?: syntax.Query): Mapping; abstract fit(input: any, qs: http.Query, parameters: Parameter[]): core.Request; }