export declare enum ErrorMessage { NotFound = "not found", NoViewMiddleware = "No view middleware", NoViewTemplate = "no view template", NonStringView = "non string view" } export declare class SierraError extends Error { constructor(message: ErrorMessage); } export declare class NotFoundError extends SierraError { constructor(); } export declare class NoViewTemplateError extends SierraError { template: string; constructor(template: string); } export declare class NoViewMiddlewareError extends SierraError { constructor(); } export declare class NonStringViewError extends SierraError { output: any; constructor(output: any); } //# sourceMappingURL=Errors.d.ts.map