/** * @file src/modules/events/form.ts * @version 2.0.3 * @since 2.0.0 * @license GPL-3.0-or-later * @copyright Sven Minio 2026 * @author Sven Minio * @category Events * @description * * Methods for handling form events (submit, change, focus, blur, input). * @requires ../../core * * Depends on the core jBase class for type definitions. */ import { jBase } from '../../core'; /** * * Registers an event handler for the 'submit' event. Triggered when a form is submitted. * @example submit(handler) => Binds a submit event handler to all matched forms. * @param handler The function to execute when the event occurs. * @returns The current jBase instance for chaining. */ export declare function submit(this: jBase, handler: (event: SubmitEvent) => void): jBase; /** * * Registers an event handler for the 'change' event. Triggered when the value of an element (,