import { ZodError } from "zod";
export declare class BooklaError extends Error {
    code: string;
    status?: number | undefined;
    constructor(message: string, code: string, status?: number | undefined);
}
export declare class BooklaValidationError extends BooklaError {
    details: ZodError;
    constructor(message: string, details: ZodError);
}
