import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { AutoSyncInfo } from "./AutoSyncInfo"; import { ContentFormat } from "./ContentFormat"; import { DocumentUsageModeEnum } from "./DocumentUsageModeEnum"; import { ExternalFileSyncInfo } from "./ExternalFileSyncInfo"; import { FileRefreshStatus } from "./FileRefreshStatus"; import { KnowledgeBaseDocumentMetadataResponseModel } from "./KnowledgeBaseDocumentMetadataResponseModel"; import { KnowledgeBaseFolderPathSegmentResponseModel } from "./KnowledgeBaseFolderPathSegmentResponseModel"; import { ResourceAccessInfo } from "./ResourceAccessInfo"; export declare const GetKnowledgeBaseFileResponseModel: core.serialization.ObjectSchema; export declare namespace GetKnowledgeBaseFileResponseModel { interface Raw { id: string; name: string; metadata: KnowledgeBaseDocumentMetadataResponseModel.Raw; supported_usages: DocumentUsageModeEnum.Raw[]; access_info: ResourceAccessInfo.Raw; folder_parent_id?: string | null; folder_path?: KnowledgeBaseFolderPathSegmentResponseModel.Raw[] | null; extracted_inner_html: string; content_format?: ContentFormat.Raw | null; filename: string; external_sync_info?: ExternalFileSyncInfo.Raw | null; auto_sync_info?: AutoSyncInfo.Raw | null; refresh_status?: FileRefreshStatus.Raw | null; is_frozen?: boolean | null; } }