/**
 * This file was auto-generated by Fern from our API Definition.
 */
export interface CustomChannelContact {
    /** Type of contact, must be "user" or "lead". */
    type: CustomChannelContact.Type;
    /** External identifier for the contact. Intercom will take care of the mapping of your external_id with our internal ones so you don't have to worry about it. */
    external_id: string;
    /** Name of the contact. */
    name: string;
    /** Email address of the contact. */
    email: string;
}
export declare namespace CustomChannelContact {
    /**
     * Type of contact, must be "user" or "lead".
     */
    type Type = "user" | "lead";
    const Type: {
        readonly User: "user";
        readonly Lead: "lead";
    };
}
