import type * as ElevenLabs from "../index";
export interface AgentBranchSummary {
    id: string;
    name: string;
    agentId: string;
    description: string;
    createdAt: number;
    lastCommittedAt: number;
    isArchived: boolean;
    protectionStatus?: ElevenLabs.BranchProtectionStatus;
    /** Access information for the branch */
    accessInfo?: ElevenLabs.ResourceAccessInfo;
    /** Percentage of traffic live on the branch */
    currentLivePercentage?: number;
    /** Whether a draft exists for the branch */
    draftExists?: boolean;
}
