/**
 * Custom click event.
 * @see {@link RadioButton.onClick}
 * @group Events
 */
export interface RadioButtonClickEvent {
    /**
     * Browser event.
     */
    originalEvent: Event;
    /**
     * Browser event.
     */
    value: any;
}
