interface FormData { [key: string]: string; } declare function formBody(data: FormData): string; export default formBody;