import { PropType } from 'vue';
declare const _default: {
    allowUncheck: BooleanConstructor;
    borderless: BooleanConstructor;
    disabled: {
        type: BooleanConstructor;
        default: any;
    };
    icon: {
        type: PropType<"circle" | "dot" | "line" | ((h: typeof import("vue").h) => import("@/common").SlotReturnValue)[]>;
        default: string;
    };
    keys: {
        type: PropType<import("@/common").KeysType>;
    };
    name: {
        type: StringConstructor;
        default: string;
    };
    options: {
        type: PropType<import("@/components").RadioOption[]>;
    };
    placement: {
        type: PropType<"left" | "right">;
        default: "left" | "right";
        validator(val: "left" | "right"): boolean;
    };
    readonly: {
        type: BooleanConstructor;
        default: any;
    };
    value: {
        type: PropType<import("@/components").RadioValue>;
        default: any;
    };
    modelValue: {
        type: PropType<import("@/components").RadioValue>;
        default: any;
    };
    defaultValue: {
        type: PropType<import("@/components").RadioValue>;
    };
    onChange: PropType<(value: import("@/components").RadioValue, context: {
        e: Event;
        name?: string;
    }) => void>;
};
export default _default;
