/** * Structured HTTP errors for the server module. * * @module bquery/server */ export declare class ServerHttpError extends Error { expose: boolean; status: number; constructor(status: number, message: string, options?: { expose?: boolean; }); } export declare const badRequest: (message?: string) => ServerHttpError; export declare const unauthorized: (message?: string) => ServerHttpError; export declare const forbidden: (message?: string) => ServerHttpError; export declare const notFound: (message?: string) => ServerHttpError; export declare const conflict: (message?: string) => ServerHttpError; //# sourceMappingURL=errors.d.ts.map