/**
 * This file was auto-generated by Fern from our API Definition.
 */
/**
 * Contains details about name of the action that was initiated for conversation part type <code>custom_action_started</code>.
 */
export interface CustomActionStarted {
    action?: CustomActionStarted.Action;
}
export declare namespace CustomActionStarted {
    interface Action {
        /** Name of the action */
        name?: string;
    }
}
