import { ArangoEdgeQueryOptions } from '../types/arango-query-options.interface';
import { ArangoBaseQueryBuilder } from './base-query-builder';
export declare class ArangoEdgeQueryBuilder extends ArangoBaseQueryBuilder {
    protected options: ArangoEdgeQueryOptions;
    protected doc: string;
    protected returnClause: string;
    private edges;
    private rootDoc;
    private startingVertexId;
    constructor(options: ArangoEdgeQueryOptions);
    setRootDocSelector(doc: string): this;
    protected buildSelector(): void;
    private buildEdges;
    private buildStartingVertexId;
}
