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