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