import { FieldDto } from './field.dto'; export declare class AttributeFieldDto extends FieldDto { /** * Indicates if the field is visible in orders */ visibleInOrder?: boolean; /** * Indicates if the field is visible in client panel */ visibleInClientPanel?: boolean; /** * Minimum repeats for repeatable fields */ repeatableMin?: number; /** * Maximum repeats for repeatable fields */ repeatableMax?: number; }