import { type PropType, type StyleValue } from 'vue'; export type IconType = 'circle' | 'record'; export interface RadioProps { rootStyle?: StyleValue; rootClass?: string; value?: any; label?: string; disabled?: boolean; readonly?: boolean; size?: string; type?: IconType; checkedColor?: string; } export declare const radioProps: { rootStyle: PropType; rootClass: StringConstructor; value: null; label: StringConstructor; disabled: { type: BooleanConstructor; default: undefined; }; readonly: { type: BooleanConstructor; default: undefined; }; size: StringConstructor; type: PropType; checkedColor: StringConstructor; }; export interface RadioSlots { default(props: Record): any; icon(props: { checked: boolean; }): any; } export interface RadioEmits { (e: 'click', event: any): void; } export interface RadioGroupProps { rootStyle?: StyleValue; rootClass?: string; modelValue?: any; disabled?: boolean; readonly?: boolean; size?: string; type?: IconType; checkedColor?: string; direction?: 'horizontal' | 'vertical'; validateEvent?: boolean; } export declare const radioGroupProps: { rootStyle: PropType; rootClass: StringConstructor; modelValue: null; disabled: BooleanConstructor; readonly: BooleanConstructor; size: StringConstructor; type: PropType; checkedColor: StringConstructor; direction: { type: PropType<"vertical" | "horizontal" | undefined>; default: string; }; validateEvent: { type: BooleanConstructor; default: boolean; }; }; export interface RadioGroupSlots { default(props: Record): any; custom(props: { toggle: (value: any) => void; value: any; }): any; } export interface RadioGroupEmits { (e: 'click', event: any): void; (e: 'update:model-value', value: any): void; } export interface RadioContext { disabled: RadioProps['disabled']; readonly: RadioProps['readonly']; size: RadioProps['size']; type: RadioProps['type']; checkedColor: RadioProps['checkedColor']; value: any; toggle: (value: any) => void; } export declare const radioContextSymbol: unique symbol; export declare const mapTypeIcon: { record: string[]; circle: string[]; };