import type { VercelCreateOptions, VercelDeleteModule, VercelSandbox } from "#execution/sandbox/bindings/vercel-sdk-types.js";
export declare function deleteVercelSandbox(input: {
    readonly createOptions: VercelCreateOptions;
    readonly loadDeleteSandboxModule: () => Promise<VercelDeleteModule>;
    readonly sandbox: VercelSandbox;
    readonly signal?: AbortSignal;
}): Promise<void>;
export declare function deleteUnusableVercelSandbox(input: {
    readonly createOptions: VercelCreateOptions;
    readonly loadDeleteSandboxModule: () => Promise<VercelDeleteModule>;
    readonly sandbox: VercelSandbox;
}): Promise<void>;
export declare function stopVercelSandbox(sandbox: VercelSandbox): Promise<void>;
