import { OptinFieldsEnum } from '../OptinFieldsEnum';
import { ContactTypeEnum } from '../configurations/ContactTypeEnum';
/** Representation of the optin rule */
export interface Optin {
    /** Fields to display publicly on the Whois */
    fields: OptinFieldsEnum[];
    /** Type of the contact associated to the optin rule */
    type: ContactTypeEnum;
}
//# sourceMappingURL=Optin.d.ts.map