/** * Creates multipart/form-data body without external dependencies. * Uses crypto.randomBytes for secure boundary generation. */ export declare function createMultipartFormData(fields: Record, file: { buffer: Buffer; filename: string; contentType: string; }): { body: Buffer; contentType: string; }; //# sourceMappingURL=multipartHelpers.d.ts.map