/** * .what = writes a file if absent, verifies content if exists * .why = idempotent file creation safe for parallel workers * * @throws UnexpectedCodePathError if file exists with different content */ export declare const findsertFile: (input: { path: string; content: string; }) => void;