import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { ExternalSyncProvider } from "./ExternalSyncProvider"; export declare const ExternalFolderSyncInfo: core.serialization.ObjectSchema; export declare namespace ExternalFolderSyncInfo { interface Raw { type: ExternalSyncProvider.Raw; source_entity_id: string; integration_connection_id: string; root_folder_id?: string | null; sync_cursor?: string | null; last_sync_at?: number | null; } }