import { type IProperties } from './parser'; import { type StaticParser } from './static'; export declare class Module { readonly parsers: Properties; constructor(parsers: Properties); /** Parses using one of the parsers defined on this instance */ Parse(key: Key, input: string): [] | [StaticParser, string]; }