import type { WithNormalizedProps } from "../../global"; export interface RadioEvent { originalEvent: Event; value: string; } interface RadioInput extends Omit { "icon-style"?: "rounded" | "square"; "on-change"?: (e: RadioEvent, el: HTMLInputElement) => void; "on-focus"?: (e: RadioEvent, el: HTMLInputElement) => void; "on-keydown"?: (e: RadioEvent, el: HTMLInputElement) => void; } export interface Input extends WithNormalizedProps { } declare class Radio extends Marko.Component { forwardEvent(eventName: string, originalEvent: Event, el: HTMLInputElement): void; } export default Radio;