import type { KnowledgeSource } from '../../types/schemas/chat/workspace-settings.js'; import type { TelaCanvas, TelaProject, TelaWorkstation } from '../../types/schemas/integrations/tela-api.js'; export declare function useWorkspaceKnowledgeSources(workstations: Ref | ComputedRef, canvas: Ref | ComputedRef, projects: Ref | ComputedRef, searchQuery: Ref, currentKnowledgeSources: Ref | ComputedRef): { selectedKnowledgeSourceIds: any; filteredWorkstations: any; hasChanges: any; toggleKnowledgeSource: (sourceId: string) => void; getProjectNameForWorkstation: (workstation: TelaWorkstation) => string; buildKnowledgeSources: () => KnowledgeSource[]; initialize: () => void; };