import * as z from "zod/v4"; export type CancelPackageGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type CancelPackageRequest = { /** * Unique identifier for the package. */ id: string; }; /** @internal */ export type CancelPackageRequest$Outbound = { id: string; }; /** @internal */ export declare const CancelPackageRequest$outboundSchema: z.ZodType; export declare function cancelPackageRequestToJSON(cancelPackageRequest: CancelPackageRequest): string; //# sourceMappingURL=cancelpackage.d.ts.map