export type StatsWriteResponse = {
    filepath: string;
    content: string;
};
export type StatsWrite = (filepath: string, stats: Record<string, unknown>) => StatsWriteResponse;
export declare function statsWrite<T extends Record<string, unknown> = Record<string, unknown>>(filepath: string, stats: T): Promise<StatsWriteResponse>;
