/**
 * This file was auto-generated by Fern from our API Definition.
 */
/**
 * Contains details about final status of the completed action for conversation part type <code>custom_action_finished</code>.
 */
export interface CustomActionFinished {
    action?: CustomActionFinished.Action;
}
export declare namespace CustomActionFinished {
    interface Action {
        /** Name of the action */
        name?: string;
        /** Status of the action */
        result?: Action.Result;
    }
    namespace Action {
        /**
         * Status of the action
         */
        type Result = "success" | "failed";
        const Result: {
            readonly Success: "success";
            readonly Failed: "failed";
        };
    }
}
