/// import { PathLike } from 'node:fs'; import { ConfigInternal } from './config'; import { ReplacerSection } from './replacer'; export declare const debugLog: (value: string, timestamp?: boolean) => Promise; export declare const deleteFolder: (path: PathLike) => Promise; /** Replace content before writing to file using the replacers set in the config file */ export declare const writeFile: ({ config, content, location, section, }: { config: ConfigInternal; section: ReplacerSection; content: string; location: string; }) => Promise; export declare const readFile: (location: string) => Promise;