/**
 * Replace van to hcm
 * @param source
 * @returns {string}
 *
 * @example
 * .van-button => .hcm-button
 * [class*='hcm--'] => [class*='hcm--']
 * \@keyframes hcm--circular => @keyframes hcm--circular
 */
export declare function styleReplacer(source: string): string;
/**
 * Replace van to hcm
 * @param source
 * @returns {string}
 *
 * @example
 * van-dialog => hcm-dialog
 * vanTabs => hcmTabs
 * VanDialog => HcmDialog
 * $vant => $hcm
 * [Vant => [Hcm
 */
export declare function scriptReplacer(source: string): string;
export declare function sfcReplacer(source: string): string;
export declare function markdownReplacer(source: string): string;
export declare function replaceStyle(filePath: string): void;
export declare function replaceScript(filePath: string): void;
export declare function replaceMd(filePath: string): void;
