export declare abstract class DinoResponse {
    /**
     * Proceeds to next middleware in the chain
     */
    proceed?(result: any): void;
    /**
     * Proceeds to next error middleware in the chain
     */
    throw?(err: Error): void;
}
