/**
 * This file was auto-generated by Fern from our API Definition.
 */
/**
 * @example
 *     {
 *         name: "Customer Issue",
 *         description: "Customer Report Template",
 *         category: "Customer",
 *         icon: "\uD83C\uDF9F\uFE0F"
 *     }
 */
export interface CreateTicketTypeRequest {
    /** The name of the ticket type. */
    name: string;
    /** The description of the ticket type. */
    description?: string;
    /** Category of the Ticket Type. */
    category?: CreateTicketTypeRequest.Category;
    /** The icon of the ticket type. */
    icon?: string;
    /** Whether the tickets associated with this ticket type are intended for internal use only or will be shared with customers. This is currently a limited attribute. */
    is_internal?: boolean;
}
export declare namespace CreateTicketTypeRequest {
    /**
     * Category of the Ticket Type.
     */
    type Category = "Customer" | "Back-office" | "Tracker";
    const Category: {
        readonly Customer: "Customer";
        readonly BackOffice: "Back-office";
        readonly Tracker: "Tracker";
    };
}
