import { RecommendedIps } from './RecommendedIps';
import { RecordStatus } from './RecordStatus';
/** Attached domain DNS status */
export interface DigStatus {
    /** Attached domain */
    domain: string;
    /**  */
    recommendedIps: RecommendedIps;
    /**  */
    records: {
        [key: string]: RecordStatus;
    };
}
//# sourceMappingURL=DigStatus.d.ts.map