import { VarComponent } from './varComponent' export type RadioGroupValidateTriggers = 'onChange' export interface RadioGroupProps { value?: any[] direction?: 'horizontal' | 'vertical' validateTrigger?: Array rules?: Array<(value: any) => any> onChange?: (value: Array) => void onInput?: (value: Array) => void } export class RadioGroup extends VarComponent { $props: RadioGroupProps validate(): Promise resetValidation(): void reset(): void } export class _RadioGroupComponent extends RadioGroup {}