import * as Types from './types'; /** Parses content using the given Parser */ export declare function Parse(moduleProperties: Types.IModuleProperties, parser: Parser, code: string, context: unknown): [] | [Types.StaticParser, string]; /** Parses content using the given Parser */ export declare function Parse(moduleProperties: Types.IModuleProperties, parser: Parser, code: string): [] | [Types.StaticParser, string]; /** Parses content using the given Parser */ export declare function Parse(parser: Parser, content: string, context: unknown): [] | [Types.StaticParser, string]; /** Parses content using the given Parser */ export declare function Parse(parser: Parser, content: string): [] | [Types.StaticParser, string];