/**
 * Enum describing the query capabilities of a Graph
 */
export type GraphCapability = number;
export declare const GRAPH_CAPABILITY: {
    UNION: number;
    ESTIMATE_TRIPLE_CARD: number;
};
