/**
 * @example
 *     {
 *         email: "elly@example.com",
 *         includeListIds: [36],
 *         redirectionUrl: "http://requestb.in/173lyyx1",
 *         templateId: 2
 *     }
 */
export interface CreateDoiContactRequest {
    /** Pass the set of attributes and their values. **These attributes must be present in your Brevo account**. For eg. **{'FNAME':'Elly', 'LNAME':'Roger', 'COUNTRIES': ['India','China']}** */
    attributes?: Record<string, CreateDoiContactRequest.Attributes.Value>;
    /** Email address where the confirmation email will be sent. This email address will be the identifier for all other contact attributes. */
    email: string;
    /** Lists under user account where contact should not be added */
    excludeListIds?: number[];
    /** Lists under user account where contact should be added */
    includeListIds: number[];
    /** URL of the web page that user will be redirected to after clicking on the double opt in URL. When editing your DOI template you can reference this URL by using the tag **{{ params.DOIurl }}**. */
    redirectionUrl: string;
    /** Id of the Double opt-in (DOI) template */
    templateId: number;
}
export declare namespace CreateDoiContactRequest {
    namespace Attributes {
        type Value = number | string | boolean | string[];
    }
}
