import { ConfigOptions as Config } from "arangojs/configuration"; import { AqlValue } from "./aql.js"; import { ArangoQueryStreamCursor } from "./arango-cursor.js"; import { ArangoDatabase, CursorOptions, QueryOptions } from "./arango-database.js"; export * from "./aql.js"; export * from "./arango-collection.js"; export * from "./arango-cursor.js"; export * from "./arango-database.js"; export * from "./arango-error.js"; export * from "./arango-view.js"; export * from "./errors.js"; export { Config }; export declare const isClient = false; export declare const isServer = true; export declare function normalizeRelativePath(path: string): string; export declare function time(): number; export declare function configure(config: Config): void; export declare function setToken(token: string): Promise; export declare function refreshToken(): Promise; export declare const db: ArangoDatabase; export declare function plainServerVersion(): Promise; export declare function query>(strings: T, ...args: AqlValue[]): Promise; export declare function query(options: QueryOptions, ...extra: CursorOptions[]): (strings: TemplateStringsArray, ...args: AqlValue[]) => Promise; //# sourceMappingURL=index.d.ts.map