import { GeneratorOptions } from '../options'; import { GatewayOperation } from '../type-model'; export interface MethodDefinition { name: string; args: { name: string; type: string; required: boolean; }[]; returnType: string; httpVerb: string; href: string; options: { key: string; value: string; }[]; } export declare function generateOperationMethodSource(operation: GatewayOperation, options: GeneratorOptions): string;