/**
 * 代码格式化工具
 */
export declare function vueFormatter(content: string, disabled?: boolean): Promise<string>;
/**
 * 格式化HTMl代码
 */
export declare function htmlFormatter(content: string, disabled?: boolean): Promise<string>;
/**
 * 格式化ts代码
 */
export declare function tsFormatter(content: string, disabled?: boolean): Promise<string>;
/**
 * 格式化js代码s
 */
export declare function jsFormatter(content: string, disabled?: boolean): Promise<string>;
/**
 * 格式化css代码
 */
export declare function cssFormatter(content: string, disabled?: boolean): Promise<string>;
