import type { DnsConfigurationInstruction } from './DnsConfigurationInstruction'; export interface NewsroomDomain { domain_name: string; type: NewsroomDomain.Type; status: NewsroomDomain.Status; instructions: DnsConfigurationInstruction[]; } export declare namespace NewsroomDomain { enum Type { PREZLY = "prezly", CUSTOM = "custom", REVERSE_PROXY = "reverse_proxy" } enum Status { ACTIVE = "active", INACTIVE = "inactive", REDIRECT = "redirect" } interface ShareInstructions { url: string; expires_at: string; } }