/** * Decorator that can be placed on a class to mark it is an API controller. * * @param path A root URL path that all endpoints in this controller share; optional. * This URL can contain path parameters, prefixed with a colon (':') character. */ export declare function apiController(path?: string): (constructor: Function) => void;