import type { WithNormalizedProps } from "../../global"; export interface SwitchEvent { originalEvent: Event; value: string; checked: boolean; } interface SwitchInput extends Omit { "on-change"?: (event: SwitchEvent) => void; } export interface Input extends WithNormalizedProps { } declare class Switch extends Marko.Component { handleChange(originalEvent: Event, target: HTMLInputElement): void; } export default Switch;