import { NamedResolutionFieldTypeEnum } from '../zone/NamedResolutionFieldTypeEnum';
/** A structure describing informations about secondary dns check field */
export interface SecondaryDNSCheckField {
    /** The field type to add on your DNS zone for this subDomain */
    fieldType: NamedResolutionFieldTypeEnum;
    /** The field value to add on your DNS zone for this subDomain */
    fieldValue: string;
    /** The subdomain to add on your DNS zone for the domain */
    subDomain: string;
}
//# sourceMappingURL=SecondaryDNSCheckField.d.ts.map