import React from 'react'; export interface DomainSettingsModel { customDomain?: string; active?: boolean; dnsRecords?: { type: string; name: string; value: string; }[]; } declare const AgencyAddCustomDomain: (props: {}) => React.JSX.Element; export default AgencyAddCustomDomain;