/**
 * form.ts
 *
 * Type definitions for HTML form elements and controls.
 * These follow HTML standards for form element types.
 */
/**
 * HTML button type attribute values
 * Used for <button type="..."> and similar elements
 */
export type THTMLButtonType = 'button' | 'submit' | 'reset';
/**
 * Selection mode for form controls
 * Used in components that support single, multiple, or range selection
 */
export type TSelectionMode = 'single' | 'multiple' | 'range';
