import type { DatabaseErrorSubclassOptions } from '../database-error'; import { DatabaseError } from '../database-error'; interface UnknownConstraintErrorOptions { constraint?: string; fields?: Record; table?: string; } /** * Thrown when constraint name is not found in the database */ export declare class UnknownConstraintError extends DatabaseError { constraint: string | undefined; fields: Record | undefined; table: string | undefined; constructor(options?: UnknownConstraintErrorOptions & DatabaseErrorSubclassOptions); } export {}; //# sourceMappingURL=unknown-constraint-error.d.ts.map