import * as z from "zod/v3";
import { Result as SafeParseResult } from "../types/fp.js";
import { SDKValidationError } from "./sdkvalidationerror.js";
export type DeleteAllArtifactsRequest = {
    /**
     * 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;
};
/**
 * Success. All cache artifacts for the account were deleted.
 */
export type DeleteAllArtifactsResponseBody = {
    deletedCount: number;
};
/** @internal */
export type DeleteAllArtifactsRequest$Outbound = {
    teamId?: string | undefined;
    slug?: string | undefined;
};
/** @internal */
export declare const DeleteAllArtifactsRequest$outboundSchema: z.ZodType<DeleteAllArtifactsRequest$Outbound, z.ZodTypeDef, DeleteAllArtifactsRequest>;
export declare function deleteAllArtifactsRequestToJSON(deleteAllArtifactsRequest: DeleteAllArtifactsRequest): string;
/** @internal */
export declare const DeleteAllArtifactsResponseBody$inboundSchema: z.ZodType<DeleteAllArtifactsResponseBody, z.ZodTypeDef, unknown>;
export declare function deleteAllArtifactsResponseBodyFromJSON(jsonString: string): SafeParseResult<DeleteAllArtifactsResponseBody, SDKValidationError>;
//# sourceMappingURL=deleteallartifactsop.d.ts.map