import type { SupportLanguage, Parser, Printer, Plugin } from 'prettier';
import { SyntaxNode } from '../ast';
export declare const languages: SupportLanguage[];
export declare const parsers: Record<string, Parser<SyntaxNode>>;
export declare const printers: Record<string, Printer<any>>;
export declare const plugin: Plugin;
export declare const parserName: string;
export default plugin;
