import type * as ElevenLabs from "../index";
export interface GetKnowledgeBaseSummaryFileResponseModel {
    id: string;
    name: string;
    metadata: ElevenLabs.KnowledgeBaseDocumentMetadataResponseModel;
    supportedUsages: ElevenLabs.DocumentUsageModeEnum[];
    accessInfo: ElevenLabs.ResourceAccessInfo;
    /** The ID of the parent folder, or null if the document is at the root level. */
    folderParentId?: string;
    /** The folder path segments leading to this entity, from root to parent folder. */
    folderPath?: ElevenLabs.KnowledgeBaseFolderPathSegmentSummaryResponseModel[];
    /** This field is deprecated and will be removed in the future, use the separate endpoint to get dependent agents instead. */
    dependentAgents: ElevenLabs.GetKnowledgeBaseSummaryFileResponseModelDependentAgentsItem[];
}
