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