import { type StyleValue } from 'vue';
import { type RadioGroupProps } from '../radio/common';
export interface RadioPopoutProps extends RadioGroupProps {
    visible?: boolean;
    title?: string;
    popoutClass?: string;
    popoutStyle?: StyleValue;
}
export declare const defaultRadioPopoutProps: () => {
    options: () => never[];
    validateEvent: boolean;
    type: RadioPopoutProps["type"];
};
export interface RadioPopoutSlots {
    default?(props: Record<string, never>): any;
}
export interface RadioPopoutEmits {
    (e: 'update:visible', visible: boolean): void;
    (e: 'update:model-value', value: any): void;
    (e: 'change', value: any): void;
}
export interface RadioPopoutExpose {
}
