import { type WebFlow } from '../web-flow/web-flow.js';
import { type InProgressWebSnap } from './web-snap.js';
/**
 * Save a {@link WebSnap} to the file system.
 *
 * @category Internal
 */
export declare function saveWebSnap(webFlow: Readonly<Pick<WebFlow, 'webSnapPaths'>>, webSnap: Readonly<InProgressWebSnap>, silent: boolean): Promise<void>;
