import { ExtensionTypeEnum } from './ExtensionTypeEnum';
import { LabelDomainRegistryConfiguration } from './LabelDomainRegistryConfiguration';
/** The registry configurations applied to a domain name */
export interface DomainRegistryConfiguration {
    /** The type of an extension (cctld or gtld) */
    extension_type: ExtensionTypeEnum;
    /** Whether premium domains are supported by the registry and handled by OVHcloud */
    isPremiumSupported: boolean;
    /** The registry configurations applied to the domain name label */
    label: LabelDomainRegistryConfiguration;
}
//# sourceMappingURL=DomainRegistryConfiguration.d.ts.map