import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DeleteFileRequest = { fileId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** @internal */ export declare const DeleteFileRequest$inboundSchema: z.ZodType; /** @internal */ export type DeleteFileRequest$Outbound = { file_id: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const DeleteFileRequest$outboundSchema: z.ZodType; export declare function deleteFileRequestToJSON(deleteFileRequest: DeleteFileRequest): string; export declare function deleteFileRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deletefile.d.ts.map