import type { InlineSnapshotData } from '../types.js';
export declare class InlineSnapshotInserter {
    #private;
    /**
     * Insert the given snapshot in the code. Returns the modified code
     */
    static insert(code: string, snapshots: InlineSnapshotData[]): {
        hasChanged: boolean;
        newCode: string;
    };
}
