import * as z from "zod/v3";
import { Result as SafeParseResult } from "../types/fp.js";
import { SDKValidationError } from "./sdkvalidationerror.js";
export type DeleteStorageStoresBlobByIdRequest = {
    id: string;
};
export type DeleteStorageStoresBlobByIdResponseBody = {
    id: string;
};
/** @internal */
export type DeleteStorageStoresBlobByIdRequest$Outbound = {
    id: string;
};
/** @internal */
export declare const DeleteStorageStoresBlobByIdRequest$outboundSchema: z.ZodType<DeleteStorageStoresBlobByIdRequest$Outbound, z.ZodTypeDef, DeleteStorageStoresBlobByIdRequest>;
export declare function deleteStorageStoresBlobByIdRequestToJSON(deleteStorageStoresBlobByIdRequest: DeleteStorageStoresBlobByIdRequest): string;
/** @internal */
export declare const DeleteStorageStoresBlobByIdResponseBody$inboundSchema: z.ZodType<DeleteStorageStoresBlobByIdResponseBody, z.ZodTypeDef, unknown>;
export declare function deleteStorageStoresBlobByIdResponseBodyFromJSON(jsonString: string): SafeParseResult<DeleteStorageStoresBlobByIdResponseBody, SDKValidationError>;
//# sourceMappingURL=deletestoragestoresblobbyidop.d.ts.map