import { Id } from './PropertiesDefinition'; import Step from './Step'; import { process } from 'gremlin'; declare type GraphTraversal = process.GraphTraversal; declare type Statics = process.Statics; export default class IdStep extends Step { static id(g: GraphTraversal | Statics): IdStep; protected constructor(q: GraphTraversal); deserialize(v: unknown): Id; createContinuation(g: GraphTraversal): this; } export {};