import OpenAI from 'openai'; declare const _default: { getAssistantVectorStore: (credentialId: string, vectorStoreId: string, workspaceId: string) => Promise; listAssistantVectorStore: (credentialId: string, workspaceId: string) => Promise; createAssistantVectorStore: (credentialId: string, obj: OpenAI.VectorStores.VectorStoreCreateParams, workspaceId: string) => Promise; updateAssistantVectorStore: (credentialId: string, vectorStoreId: string, obj: OpenAI.VectorStores.VectorStoreUpdateParams, workspaceId: string) => Promise; deleteAssistantVectorStore: (credentialId: string, vectorStoreId: string, workspaceId: string) => Promise; uploadFilesToAssistantVectorStore: (credentialId: string, vectorStoreId: string, files: { filePath: string; fileName: string; }[], workspaceId: string) => Promise; deleteFilesFromAssistantVectorStore: (credentialId: string, vectorStoreId: string, file_ids: string[], workspaceId: string) => Promise<{ deletedFileIds: string[]; count: number; }>; }; export default _default;