import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type DeleteModelOut = {
    /**
     * The ID of the deleted model.
     */
    id: string;
    /**
     * The object type that was deleted
     */
    object: string | undefined;
    /**
     * The deletion status
     */
    deleted: boolean | undefined;
};
/** @internal */
export declare const DeleteModelOut$inboundSchema: z.ZodType<DeleteModelOut, z.ZodTypeDef, unknown>;
export declare function deleteModelOutFromJSON(jsonString: string): SafeParseResult<DeleteModelOut, SDKValidationError>;
//# sourceMappingURL=deletemodelout.d.ts.map