import * as Types from './types'; export declare class Module { private readonly properties; constructor(properties: Properties); /** Parses using one of the parsers defined on this instance */ Parse(key: Key, content: string, context: unknown): [] | [Types.StaticParser, string]; /** Parses using one of the parsers defined on this instance */ Parse(key: Key, content: string): [] | [Types.StaticParser, string]; }