declare const global: any; declare global { // Augment global type for FormData prototype to include missing methods: keys, values, entries, and Symbol.iterator // These methods are used in React for server actions. interface FormData { keys(): IterableIterator; values(): IterableIterator; entries(): IterableIterator<[string, string | Blob]>; [Symbol.iterator](): IterableIterator<[string, string | Blob]>; } }