export default function writeTextFile({ path, content }: {
    path: any;
    content: any;
}): Promise<void>;
