import { BFormRadioProps, BFormRadioSlots, RadioValue } from '../../types';
type __VLS_Props = Omit<BFormRadioProps, 'modelValue'>;
type __VLS_Slots = BFormRadioSlots;
type __VLS_ModelProps = {
    modelValue?: BFormRadioProps['modelValue'];
};
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
declare const __VLS_base: import('vue').DefineComponent<__VLS_PublicProps, {
    blur: () => void;
    element: Readonly<import('vue').ShallowRef<HTMLInputElement | null, HTMLInputElement | null>>;
    focus: () => void;
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
    "update:modelValue": (value: RadioValue | undefined) => any;
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
    "onUpdate:modelValue"?: ((value: RadioValue | undefined) => any) | undefined;
}>, {
    button: boolean;
    disabled: boolean;
    value: RadioValue;
    autofocus: boolean;
    form: string;
    id: string;
    name: string;
    required: boolean;
    size: import('../..').Size;
    state: import('../..').ValidationState;
    ariaLabel: string;
    inline: boolean;
    buttonGroup: boolean;
    reverse: boolean;
    plain: boolean;
    ariaLabelledby: string;
    buttonVariant: import('../..').ButtonVariant | null;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
declare const _default: typeof __VLS_export;
export default _default;
type __VLS_WithSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
