import type { ExtractPropTypes } from "vue";
export interface CheckboxOption {
    value: string | number;
    label: string;
    disabled?: boolean;
}
export declare const radioProps: {
    readonly radios: {
        readonly type: import("vue").PropType<CheckboxOption[]>;
        readonly default: () => never[];
    };
};
export type RadioProps = ExtractPropTypes<typeof radioProps>;
