/**
 * This file was auto-generated by Fern from our API Definition.
 */
/**
 * The content source used by AI Agent in the conversation.
 */
export interface ContentSource {
    /** The type of the content source. */
    content_type: "custom_answer";
    /** The internal URL linking to the content source for teammates. */
    url: string;
    /** The title of the content source. */
    title: string;
    /** The ISO 639 language code of the content source. */
    locale: string;
}
