/// import type { Readable } from 'node:stream'; type FormData = { getBoundary: () => string; getLength: (callback: (error: Error | null, length: number) => void) => void; } & Readable; export default function isFormData(body: unknown): body is FormData; export {};