export declare const prettierConfigPath: string;
/**
 * Uses prettier to format the given TypeScript sourcecode.
 * @param source The TypeScript snippet that needs to be formatted
 */
export declare function formatTypeScript(source: string): Promise<string>;
