import * as z from "zod/v3";
import { Result as SafeParseResult } from "../types/fp.js";
import { SDKValidationError } from "./sdkvalidationerror.js";
import { Snapshot } from "./snapshot.js";
export type DeleteSessionSnapshotRequest = {
    /**
     * The unique identifier of the snapshot to delete.
     */
    snapshotId: string;
    /**
     * The Team identifier to perform the request on behalf of.
     */
    teamId?: string | undefined;
    /**
     * The Team slug to perform the request on behalf of.
     */
    slug?: string | undefined;
};
export type DeleteSessionSnapshotResponseBody = {
    /**
     * This object contains information related to a Snapshot of a Vercel Sandbox session (v2 API).
     */
    snapshot: Snapshot;
};
/** @internal */
export type DeleteSessionSnapshotRequest$Outbound = {
    snapshotId: string;
    teamId?: string | undefined;
    slug?: string | undefined;
};
/** @internal */
export declare const DeleteSessionSnapshotRequest$outboundSchema: z.ZodType<DeleteSessionSnapshotRequest$Outbound, z.ZodTypeDef, DeleteSessionSnapshotRequest>;
export declare function deleteSessionSnapshotRequestToJSON(deleteSessionSnapshotRequest: DeleteSessionSnapshotRequest): string;
/** @internal */
export declare const DeleteSessionSnapshotResponseBody$inboundSchema: z.ZodType<DeleteSessionSnapshotResponseBody, z.ZodTypeDef, unknown>;
export declare function deleteSessionSnapshotResponseBodyFromJSON(jsonString: string): SafeParseResult<DeleteSessionSnapshotResponseBody, SDKValidationError>;
//# sourceMappingURL=deletesessionsnapshotop.d.ts.map