/** * Serializes a form and returns a plain object. If a form contol with the same * name appears more than once, the property will be converted to an array. */ declare function serialize(form: HTMLFormElement): Record; export { serialize };