/**
 * Thrown when an input of a @Parent decoration has not been decorated with @Controller
 */
export declare class ParentControllerError extends Error {
    /** The child controller */
    readonly child: Function;
    /** The parent controller */
    readonly parent: Function;
}
