import { type StaticParser } from './static'; import { type IParser, type IProperties } from './parser'; export declare function ParseParser(context: IProperties, parser: Parser, input: string): [] | [StaticParser, string]; /** Parses input using the given Parser */ export declare function Parse(context: IProperties, parser: Parser, input: string): [] | [StaticParser, string]; /** Parses input using the given Parser */ export declare function Parse(parser: Parser, content: string): [] | [StaticParser, string];