import { type RadioGroupProps } from '../radio/common'; import { type DefaultProps } from '../config'; import { type FormPopoutProps } from '../popout/useFormPopout'; import type { MotionEmits } from '../motion'; export interface RadioPopoutProps extends FormPopoutProps, RadioGroupProps { searchable?: boolean; filterPlaceholder?: string; iconPosition?: 'left' | 'right'; } export declare const defaultRadioPopoutProps: DefaultProps; export interface RadioPopoutSlots { default?(props: Record): any; } export interface RadioPopoutEmits extends MotionEmits { (e: 'update:visible', visible: boolean): void; (e: 'update:modelValue', value: any): void; (e: 'change', value: any): void; (e: 'confirm', value: any): void; } export interface RadioPopoutExpose { }