import * as z from "zod/v3";
import { Result as SafeParseResult } from "../types/fp.js";
import { NamedSandbox } from "./namedsandbox.js";
import { SDKValidationError } from "./sdkvalidationerror.js";
export type DeleteSandboxRequest = {
    /**
     * The sandbox name to delete.
     */
    name: string;
    /**
     * The project ID that owns the named sandbox. When provided, takes precedence over OIDC project context.
     */
    projectId?: string | undefined;
    /**
     * 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 DeleteSandboxResponseBody = {
    /**
     * This object contains information related to a Vercel NamedSandbox.
     */
    sandbox: NamedSandbox;
};
/** @internal */
export type DeleteSandboxRequest$Outbound = {
    name: string;
    projectId?: string | undefined;
    teamId?: string | undefined;
    slug?: string | undefined;
};
/** @internal */
export declare const DeleteSandboxRequest$outboundSchema: z.ZodType<DeleteSandboxRequest$Outbound, z.ZodTypeDef, DeleteSandboxRequest>;
export declare function deleteSandboxRequestToJSON(deleteSandboxRequest: DeleteSandboxRequest): string;
/** @internal */
export declare const DeleteSandboxResponseBody$inboundSchema: z.ZodType<DeleteSandboxResponseBody, z.ZodTypeDef, unknown>;
export declare function deleteSandboxResponseBodyFromJSON(jsonString: string): SafeParseResult<DeleteSandboxResponseBody, SDKValidationError>;
//# sourceMappingURL=deletesandboxop.d.ts.map