declare const peg$allowedStartRules: string[]; declare class peg$SyntaxError extends SyntaxError { static buildMessage(expected: any, found: any): string; constructor(message: any, expected: any, found: any, location: any); expected: any; found: any; location: any; format(sources: any): string; } declare function peg$parse(input: any, options: any): any; export { peg$allowedStartRules as StartRules, peg$SyntaxError as SyntaxError, peg$parse as parse };