export type FormatterParser = 'babel' | 'graphql' | 'typescript';
export declare function prettify(code: string, parser?: FormatterParser): Promise<string>;
