import { Logger } from "koishi";
import { Config } from "./config";
declare const logger: Logger;
export declare function logInfoformat(config: Config, USER: any, command: any, message: any): void;
export declare function logError(message: any): void;
export declare function logInfo(config: Config, ...args: unknown[]): void;
export declare function replacePlaceholders(content: any, context: any, isRawMode?: boolean): any;
export declare function getAllFiles(dir: string, fileList?: string[]): string[];
export declare function getVirtualFilename(filePath: string, rootFolderPath: string): string;
export { logger };
