import { BaseResponse } from '../base-response.dto'; import { FieldDto } from '../field.dto'; /** * Represents the response from validating product attributes. * Contains the list of attributes that have been validated. */ export declare class ValidateAttributesResponseDto extends BaseResponse { /** * An array of field DTOs representing the validated attributes. * Each `FieldDto` contains details about a single attribute. */ validatedAttributes: FieldDto[]; }