import { EApiExceptionDetailsType } from '../../../../../enum/utility/exception-details-type.enum';
export declare class ExceptionDetailsForeignKeyViolationDTO {
    constraint?: string;
    detail?: string;
    field?: string;
    referencedField?: string;
    referencedTable?: string;
    table?: string;
    type: EApiExceptionDetailsType;
    value?: string;
}
