/** * Finds a form's submit button. First looking for a button inside form, * and then looking for a button whose form attribute is equal to the ID of the form. */ export declare function getSubmitButton(form: HTMLFormElement): HTMLButtonElement | null;