import { ScopeStringFor, ScopeSyntax } from './syntax.js'; /** * Translates a scope string into a {@link ScopeSyntax}. */ export declare class ScopeStringSyntax

implements ScopeSyntax

{ readonly prefix: P; readonly positional?: string | undefined; readonly params?: Readonly | undefined; constructor(prefix: P, positional?: string | undefined, params?: Readonly | undefined); keys(): Generator; getSingle(key: string): string | null | undefined; getMulti(key: string): string[] | undefined; toString(): ScopeStringFor

; static fromString

(scopeValue: ScopeStringFor

): ScopeStringSyntax

; } //# sourceMappingURL=syntax-string.d.ts.map