export declare const getInterop: () => Promise<Parser>;
export interface Parser {
    parse: (file: string) => string;
    parserVersion: () => string;
}
