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