UNPKG

keep-vue

Version:

Keep Vue is an open-source component library built on top of Vue3 and Tailwind CSS. It offers a collection of pre-designed UI components and styles that you can easily integrate into your web applications.

26 lines (25 loc) 1.04 kB
import type { InputHTMLAttributes } from "vue"; import type { ClassProps } from "../../utils/interface"; export interface RadioProps extends /* @vue-ignore */ InputHTMLAttributes { variant?: "circle" | "rounded" | "square"; id?: string; name?: string; value: string; disabled?: boolean; } declare let __VLS_typeProps: RadioProps & ClassProps; type __VLS_PublicProps = { "modelValue"?: string; } & typeof __VLS_typeProps; declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:modelValue": (modelValue: string) => any; }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:modelValue"?: ((modelValue: string) => any) | undefined; }>, { disabled: boolean; class: any; id: string; name: string; variant: "circle" | "rounded" | "square"; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; export default _default;