radio-button.vue.d.ts 924 B

123456789101112131415161718192021222324
  1. import { RadioButtonProps } from "./radio-button.js";
  2. import * as _$vue from "vue";
  3. //#region ../../packages/components/radio/src/radio-button.vue.d.ts
  4. declare var __VLS_1: {};
  5. type __VLS_Slots = {} & {
  6. default?: (props: typeof __VLS_1) => any;
  7. };
  8. declare const __VLS_base: _$vue.DefineComponent<RadioButtonProps, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<RadioButtonProps> & Readonly<{}>, {
  9. disabled: boolean;
  10. modelValue: string | number | boolean;
  11. name: string;
  12. value: string | number | boolean;
  13. label: string | number | boolean;
  14. }, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
  15. declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
  16. declare const _default: typeof __VLS_export;
  17. type __VLS_WithSlots<T, S> = T & {
  18. new (): {
  19. $slots: S;
  20. };
  21. };
  22. //#endregion
  23. export { _default as default };