import * as glob from 'glob'; import { IStateAndTarget } from './state-util'; /** * Find Controllers result. */ export declare type FindControllersResult = Array; /** * Finds classes using the specified pattern and options. * * @param pattern Glob pattern * @param opts Glob options */ export declare function findControllers(pattern: string, opts?: glob.IOptions): FindControllersResult;