/// import { PinionContext } from '../core'; /** * Add tracing information on what happened to the Pinion context * * @param ctx The current context * @param name The name of the operation * @param data The data to log * @returns The current context */ export declare const addTrace: (ctx: C, name: string, info: unknown) => C; export declare type WriteFileOptions = { force: boolean; }; export declare const overwrite: (ctx: C, fileName: string, options?: Partial) => Promise; export declare const promptWriteFile: (fileName: string, content: string | Buffer, ctx: C, options?: Partial) => Promise;