/** A website domain */
export interface Domain {
    /** If the CDN is currently active */
    cdn: boolean;
    /** FQDN of the website domain */
    fqdn: string;
    /** If the SSL is currently active */
    ssl: boolean;
}
//# sourceMappingURL=Domain.d.ts.map