export declare const DnsType: {
    readonly AzureDns: "AzureDns";
    readonly DefaultDomainRegistrarDns: "DefaultDomainRegistrarDns";
};
/**
 * Target DNS type (would be used for migration)
 */
export type DnsType = (typeof DnsType)[keyof typeof DnsType];
