export declare module Runner { interface IControllerOptions { } interface IControllerAccess { } class Controller implements IControllerAccess { private options; constructor(options?: IControllerOptions); getPathSwagger(mockName: string, mode?: 'sample' | 'result'): string; getPathSecurityDefinitions(mockName: string, mode?: 'sample' | 'result'): string; getPathSecurityInterfacesTs(mockName: string, mode?: 'sample' | 'result'): string; getPathSecurityTs(mockName: string, mode?: 'sample' | 'result'): string; getPathSecurityControllerTs(mockName: string, mode?: 'sample' | 'result'): string; getPathControllerDefinitions(mockName: string, mode?: 'sample' | 'result'): string; getPathControllerDefinitionsTs(mockName: string, mode?: 'sample' | 'result'): string; getPathControllerOperations(mockName: string, mode?: 'sample' | 'result'): string; getPathControllerInterfacesTs(mockName: string, routeName: string, mode?: 'sample' | 'result'): string; getRoutes(operations: { operations: { route?: string; }[]; }): string[]; getPathControllerControllerTs(mockName: string, routeName: string, mode?: 'sample' | 'result'): string; getPathControllerImplementTs(mockName: string, routeName: string, mode?: 'sample' | 'result'): string; } } declare var _default: typeof Runner.Controller; export default _default;