interface ParserOptions {
    ast?: boolean;
}
export default function (input: string, options?: ParserOptions): any;
export {};
