import Connection from '../connection/index.js'; import { VectorConfig } from '../index.js'; import { CommandBase } from '../validation/commandBase.js'; export default class VectorAdder extends CommandBase { private className; private vectors; constructor(client: Connection); withClassName: (className: string) => this; withVectors: (vectors: Record) => this; validateClassName: () => void; validate: () => void; do: () => Promise; }