/**
 * 对象转 formdata 不考虑深层对象
 */
declare function toFormData(data: Record<string, any>): FormData;

export { toFormData };
