import { Context, Operation } from "@apexlang/core/model"; export interface PathDirective { value: string; } export interface ResponseDirective { status: string; returns?: string; description?: string; examples?: { [k: string]: string; }; } export declare function getPath(context: Context): string; export declare function getMethods(oper: Operation): string[]; export declare function hasBody(method: string): boolean; //# sourceMappingURL=index.d.ts.map