import { messageColor } from ".";
export declare function colorMessage(color: messageColor, message: string): void;
export declare function welcomeMessage(): void;
export declare function handleExit(): void;
export declare function updateFile(pathOf: string, mainFile: string): Promise<void>;
export declare function cleanAppCss(filePath: string): Promise<void>;
export declare function removeImport(pathOf: string, stringToSearch: string): Promise<void>;
export declare function changeSiteTitle(pathOf: string, stringToSearch: string, siteTitle: string): Promise<void>;
export declare function removeSvgs(pathToFiles: string[]): Promise<void>;
export declare function performOperations({ fullPath, confirmAll, isTypeScript, htmlTitle, deleteSvgs, }: {
    fullPath: string;
    confirmAll?: boolean;
    isTypeScript?: boolean;
    htmlTitle?: boolean;
    deleteSvgs?: boolean;
}): Promise<void>;
