declare class KTCustomError extends Error {
    status?: number;
    constructor(message: string, statusCode: number);
}
export { KTCustomError };
