import { BaseFieldDto } from '../base-field.dto'; /** * Multi-country selection field. Value is an array of ISO 3166-1 alpha-2 country codes. */ export declare class CountriesFieldDto extends BaseFieldDto { /** * Discriminator literal. */ type: 'COUNTRIES'; /** * Value of the field — ISO 3166-1 alpha-2 country codes. */ value?: string[]; }