import { ExtractPropTypes } from 'vue'; export declare const radioButtonProps: { name: { type: StringConstructor; default: string; }; label: { type: StringConstructor; default: string; }; value: { type: import("vue").PropType; required: boolean; default: string; }; disabled: { type: BooleanConstructor; default: boolean; }; borderless: { type: BooleanConstructor; default: boolean; }; }; export type RadioButtonProps = ExtractPropTypes;