index.d.mts 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584
  1. import * as vue from 'vue';
  2. import { ComponentPropsOptions, ExtractPropTypes, VNodeChild, VNode, PropType, ComponentPublicInstance, FunctionalComponent, ComputedRef, Ref, DirectiveBinding } from 'vue';
  3. type ClassValue = any;
  4. type SlotsToProps<U extends RawSlots, T = MakeInternalSlots<U>> = {
  5. $children?: (VNodeChild | (T extends {
  6. default: infer V;
  7. } ? V : {}) | {
  8. [K in keyof T]?: T[K];
  9. });
  10. 'v-slots'?: {
  11. [K in keyof T]?: T[K] | false;
  12. };
  13. } & {
  14. [K in keyof T as `v-slot:${K & string}`]?: T[K] | false;
  15. };
  16. type RawSlots = Record<string, unknown>;
  17. type Slot<T> = [T] extends [never] ? () => VNodeChild : (arg: T) => VNodeChild;
  18. type VueSlot<T> = [T] extends [never] ? () => VNode[] : (arg: T) => VNode[];
  19. type MakeInternalSlots<T extends RawSlots> = {
  20. [K in keyof T]: Slot<T[K]>;
  21. };
  22. type MakeSlots<T extends RawSlots> = {
  23. [K in keyof T]: VueSlot<T[K]>;
  24. };
  25. type GenericProps<Props, Slots extends Record<string, unknown>> = {
  26. $props: Props & SlotsToProps<Slots>;
  27. $slots: MakeSlots<Slots>;
  28. };
  29. interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions>, Props = ExtractPropTypes<PropsOptions>> {
  30. filterProps<T extends Partial<Props>, U extends Exclude<keyof Props, Exclude<keyof Props, keyof T>>>(props: T): Partial<Pick<T, U>>;
  31. }
  32. declare function deepEqual(a: any, b: any): boolean;
  33. type EventProp<T extends any[] = any[], F = (...args: T) => void> = F;
  34. declare const EventProp: <T extends any[] = any[]>() => PropType<EventProp<T>>;
  35. type Density = null | 'default' | 'comfortable' | 'compact';
  36. type ValidationResult = string | boolean;
  37. type ValidationRule = ValidationResult | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>);
  38. type ValidateOnValue = 'blur' | 'input' | 'submit' | 'invalid-input';
  39. type ValidateOn = ValidateOnValue | `${ValidateOnValue} lazy` | `${ValidateOnValue} eager` | `lazy ${ValidateOnValue}` | `eager ${ValidateOnValue}` | 'lazy' | 'eager';
  40. interface ValidationProps {
  41. disabled: boolean | null;
  42. error: boolean;
  43. errorMessages: string | readonly string[] | null;
  44. focused: boolean;
  45. maxErrors: string | number;
  46. name: string | undefined;
  47. label: string | undefined;
  48. readonly: boolean | null;
  49. rules: readonly ValidationRule[];
  50. modelValue: any;
  51. 'onUpdate:modelValue': EventProp | undefined;
  52. validateOn?: ValidateOn;
  53. validationValue: any;
  54. }
  55. type JSXComponent<Props = any> = {
  56. new (): ComponentPublicInstance<Props>;
  57. } | FunctionalComponent<Props>;
  58. type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
  59. declare const IconValue: PropType<IconValue>;
  60. type VMessageSlot = {
  61. message: string;
  62. };
  63. interface VInputSlot {
  64. id: ComputedRef<string>;
  65. messagesId: ComputedRef<string>;
  66. isDirty: ComputedRef<boolean>;
  67. isDisabled: ComputedRef<boolean>;
  68. isReadonly: ComputedRef<boolean>;
  69. isPristine: Ref<boolean>;
  70. isValid: ComputedRef<boolean | null>;
  71. isValidating: Ref<boolean>;
  72. reset: () => void;
  73. resetValidation: () => void;
  74. validate: () => void;
  75. }
  76. type VInputSlots = {
  77. default: VInputSlot;
  78. prepend: VInputSlot;
  79. append: VInputSlot;
  80. details: VInputSlot;
  81. message: VMessageSlot;
  82. };
  83. interface RippleDirectiveBinding extends Omit<DirectiveBinding, 'modifiers' | 'value'> {
  84. value?: boolean | {
  85. class: string;
  86. };
  87. modifiers: {
  88. center?: boolean;
  89. circle?: boolean;
  90. stop?: boolean;
  91. };
  92. }
  93. type VRadioGroupSlots = Omit<VInputSlots, 'default'> & {
  94. default: never;
  95. label: {
  96. label: string | undefined;
  97. props: Record<string, any>;
  98. };
  99. };
  100. declare const VRadioGroup: {
  101. new (...args: any[]): vue.CreateComponentPublicInstance<{
  102. type: string;
  103. inline: boolean;
  104. error: boolean;
  105. height: string | number;
  106. direction: "horizontal" | "vertical";
  107. style: vue.StyleValue;
  108. disabled: boolean | null;
  109. readonly: boolean | null;
  110. messages: string | readonly string[];
  111. focused: boolean;
  112. errorMessages: string | readonly string[] | null;
  113. maxErrors: string | number;
  114. rules: readonly ValidationRule[];
  115. density: Density;
  116. ripple: boolean | {
  117. class: string;
  118. } | undefined;
  119. falseIcon: IconValue;
  120. trueIcon: IconValue;
  121. valueComparator: typeof deepEqual;
  122. centerAffix: boolean;
  123. hideSpinButtons: boolean;
  124. persistentHint: boolean;
  125. } & {
  126. name?: string | undefined;
  127. id?: string | undefined;
  128. width?: string | number | undefined;
  129. color?: string | undefined;
  130. maxWidth?: string | number | undefined;
  131. minWidth?: string | number | undefined;
  132. label?: string | undefined;
  133. class?: any;
  134. theme?: string | undefined;
  135. 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
  136. validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
  137. validationValue?: any;
  138. prependIcon?: IconValue | undefined;
  139. appendIcon?: IconValue | undefined;
  140. defaultsTarget?: string | undefined;
  141. 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
  142. 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
  143. hint?: string | undefined;
  144. hideDetails?: boolean | "auto" | undefined;
  145. } & {}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
  146. 'update:modelValue': (value: any) => true;
  147. }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "v-slot:prepend" | "v-slot:append" | "update:modelValue" | "v-slot:label" | "v-slot:message" | "v-slot:details">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
  148. type: string;
  149. inline: boolean;
  150. error: boolean;
  151. height: string | number;
  152. direction: "horizontal" | "vertical";
  153. style: vue.StyleValue;
  154. disabled: boolean | null;
  155. readonly: boolean | null;
  156. messages: string | readonly string[];
  157. focused: boolean;
  158. errorMessages: string | readonly string[] | null;
  159. maxErrors: string | number;
  160. rules: readonly ValidationRule[];
  161. density: Density;
  162. ripple: boolean | {
  163. class: string;
  164. } | undefined;
  165. falseIcon: IconValue;
  166. trueIcon: IconValue;
  167. valueComparator: typeof deepEqual;
  168. centerAffix: boolean;
  169. hideSpinButtons: boolean;
  170. persistentHint: boolean;
  171. } & {
  172. name?: string | undefined;
  173. id?: string | undefined;
  174. width?: string | number | undefined;
  175. color?: string | undefined;
  176. maxWidth?: string | number | undefined;
  177. minWidth?: string | number | undefined;
  178. label?: string | undefined;
  179. class?: any;
  180. theme?: string | undefined;
  181. 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
  182. validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
  183. validationValue?: any;
  184. prependIcon?: IconValue | undefined;
  185. appendIcon?: IconValue | undefined;
  186. defaultsTarget?: string | undefined;
  187. 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
  188. 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
  189. hint?: string | undefined;
  190. hideDetails?: boolean | "auto" | undefined;
  191. } & {}, {
  192. type: string;
  193. inline: boolean;
  194. error: boolean;
  195. height: string | number;
  196. direction: "horizontal" | "vertical";
  197. style: vue.StyleValue;
  198. disabled: boolean | null;
  199. readonly: boolean | null;
  200. messages: string | readonly string[];
  201. focused: boolean;
  202. errorMessages: string | readonly string[] | null;
  203. maxErrors: string | number;
  204. rules: readonly ValidationRule[];
  205. density: Density;
  206. ripple: boolean | {
  207. class: string;
  208. } | undefined;
  209. falseIcon: IconValue;
  210. trueIcon: IconValue;
  211. valueComparator: typeof deepEqual;
  212. centerAffix: boolean;
  213. hideSpinButtons: boolean;
  214. persistentHint: boolean;
  215. }, true, {}, vue.SlotsType<Partial<{
  216. message: (arg: VMessageSlot) => vue.VNode[];
  217. details: (arg: VInputSlot) => vue.VNode[];
  218. append: (arg: VInputSlot) => vue.VNode[];
  219. prepend: (arg: VInputSlot) => vue.VNode[];
  220. default: () => vue.VNode[];
  221. label: (arg: {
  222. label: string | undefined;
  223. props: Record<string, any>;
  224. }) => vue.VNode[];
  225. }>>, {
  226. P: {};
  227. B: {};
  228. D: {};
  229. C: {};
  230. M: {};
  231. Defaults: {};
  232. }, {
  233. type: string;
  234. inline: boolean;
  235. error: boolean;
  236. height: string | number;
  237. direction: "horizontal" | "vertical";
  238. style: vue.StyleValue;
  239. disabled: boolean | null;
  240. readonly: boolean | null;
  241. messages: string | readonly string[];
  242. focused: boolean;
  243. errorMessages: string | readonly string[] | null;
  244. maxErrors: string | number;
  245. rules: readonly ValidationRule[];
  246. density: Density;
  247. ripple: boolean | {
  248. class: string;
  249. } | undefined;
  250. falseIcon: IconValue;
  251. trueIcon: IconValue;
  252. valueComparator: typeof deepEqual;
  253. centerAffix: boolean;
  254. hideSpinButtons: boolean;
  255. persistentHint: boolean;
  256. } & {
  257. name?: string | undefined;
  258. id?: string | undefined;
  259. width?: string | number | undefined;
  260. color?: string | undefined;
  261. maxWidth?: string | number | undefined;
  262. minWidth?: string | number | undefined;
  263. label?: string | undefined;
  264. class?: any;
  265. theme?: string | undefined;
  266. 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
  267. validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
  268. validationValue?: any;
  269. prependIcon?: IconValue | undefined;
  270. appendIcon?: IconValue | undefined;
  271. defaultsTarget?: string | undefined;
  272. 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
  273. 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
  274. hint?: string | undefined;
  275. hideDetails?: boolean | "auto" | undefined;
  276. } & {}, {}, {}, {}, {}, {
  277. type: string;
  278. inline: boolean;
  279. error: boolean;
  280. height: string | number;
  281. direction: "horizontal" | "vertical";
  282. style: vue.StyleValue;
  283. disabled: boolean | null;
  284. readonly: boolean | null;
  285. messages: string | readonly string[];
  286. focused: boolean;
  287. errorMessages: string | readonly string[] | null;
  288. maxErrors: string | number;
  289. rules: readonly ValidationRule[];
  290. density: Density;
  291. ripple: boolean | {
  292. class: string;
  293. } | undefined;
  294. falseIcon: IconValue;
  295. trueIcon: IconValue;
  296. valueComparator: typeof deepEqual;
  297. centerAffix: boolean;
  298. hideSpinButtons: boolean;
  299. persistentHint: boolean;
  300. }>;
  301. __isFragment?: never;
  302. __isTeleport?: never;
  303. __isSuspense?: never;
  304. } & vue.ComponentOptionsBase<{
  305. type: string;
  306. inline: boolean;
  307. error: boolean;
  308. height: string | number;
  309. direction: "horizontal" | "vertical";
  310. style: vue.StyleValue;
  311. disabled: boolean | null;
  312. readonly: boolean | null;
  313. messages: string | readonly string[];
  314. focused: boolean;
  315. errorMessages: string | readonly string[] | null;
  316. maxErrors: string | number;
  317. rules: readonly ValidationRule[];
  318. density: Density;
  319. ripple: boolean | {
  320. class: string;
  321. } | undefined;
  322. falseIcon: IconValue;
  323. trueIcon: IconValue;
  324. valueComparator: typeof deepEqual;
  325. centerAffix: boolean;
  326. hideSpinButtons: boolean;
  327. persistentHint: boolean;
  328. } & {
  329. name?: string | undefined;
  330. id?: string | undefined;
  331. width?: string | number | undefined;
  332. color?: string | undefined;
  333. maxWidth?: string | number | undefined;
  334. minWidth?: string | number | undefined;
  335. label?: string | undefined;
  336. class?: any;
  337. theme?: string | undefined;
  338. 'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
  339. validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
  340. validationValue?: any;
  341. prependIcon?: IconValue | undefined;
  342. appendIcon?: IconValue | undefined;
  343. defaultsTarget?: string | undefined;
  344. 'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
  345. 'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
  346. hint?: string | undefined;
  347. hideDetails?: boolean | "auto" | undefined;
  348. } & {}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
  349. 'update:modelValue': (value: any) => true;
  350. }, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "v-slot:prepend" | "v-slot:append" | "update:modelValue" | "v-slot:label" | "v-slot:message" | "v-slot:details">, string, {
  351. type: string;
  352. inline: boolean;
  353. error: boolean;
  354. height: string | number;
  355. direction: "horizontal" | "vertical";
  356. style: vue.StyleValue;
  357. disabled: boolean | null;
  358. readonly: boolean | null;
  359. messages: string | readonly string[];
  360. focused: boolean;
  361. errorMessages: string | readonly string[] | null;
  362. maxErrors: string | number;
  363. rules: readonly ValidationRule[];
  364. density: Density;
  365. ripple: boolean | {
  366. class: string;
  367. } | undefined;
  368. falseIcon: IconValue;
  369. trueIcon: IconValue;
  370. valueComparator: typeof deepEqual;
  371. centerAffix: boolean;
  372. hideSpinButtons: boolean;
  373. persistentHint: boolean;
  374. }, {}, string, vue.SlotsType<Partial<{
  375. message: (arg: VMessageSlot) => vue.VNode[];
  376. details: (arg: VInputSlot) => vue.VNode[];
  377. append: (arg: VInputSlot) => vue.VNode[];
  378. prepend: (arg: VInputSlot) => vue.VNode[];
  379. default: () => vue.VNode[];
  380. label: (arg: {
  381. label: string | undefined;
  382. props: Record<string, any>;
  383. }) => vue.VNode[];
  384. }>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
  385. modelValue?: T | null;
  386. "onUpdate:modelValue"?: (value: T | null) => void;
  387. }, slots: VRadioGroupSlots) => GenericProps<typeof props, typeof slots>) & FilterPropsOptions<{
  388. trueIcon: {
  389. type: vue.PropType<IconValue>;
  390. default: string;
  391. };
  392. falseIcon: {
  393. type: vue.PropType<IconValue>;
  394. default: string;
  395. };
  396. type: {
  397. type: StringConstructor;
  398. default: string;
  399. };
  400. name: StringConstructor;
  401. inline: BooleanConstructor;
  402. error: BooleanConstructor;
  403. id: StringConstructor;
  404. color: StringConstructor;
  405. style: {
  406. type: vue.PropType<vue.StyleValue>;
  407. default: null;
  408. };
  409. disabled: {
  410. type: vue.PropType<boolean | null>;
  411. default: null;
  412. };
  413. readonly: {
  414. type: vue.PropType<boolean | null>;
  415. default: null;
  416. };
  417. class: vue.PropType<ClassValue>;
  418. theme: StringConstructor;
  419. modelValue: null;
  420. density: {
  421. type: vue.PropType<Density>;
  422. default: string;
  423. validator: (v: any) => boolean;
  424. };
  425. ripple: {
  426. type: vue.PropType<RippleDirectiveBinding["value"]>;
  427. default: boolean;
  428. };
  429. defaultsTarget: StringConstructor;
  430. valueComparator: {
  431. type: vue.PropType<typeof deepEqual>;
  432. default: typeof deepEqual;
  433. };
  434. focused: BooleanConstructor;
  435. 'onUpdate:focused': vue.PropType<(args_0: boolean) => void>;
  436. errorMessages: {
  437. type: vue.PropType<string | readonly string[] | null>;
  438. default: () => never[];
  439. };
  440. maxErrors: {
  441. type: (StringConstructor | NumberConstructor)[];
  442. default: number;
  443. };
  444. label: StringConstructor;
  445. rules: {
  446. type: vue.PropType<readonly ValidationRule[]>;
  447. default: () => never[];
  448. };
  449. validateOn: vue.PropType<ValidationProps["validateOn"]>;
  450. validationValue: null;
  451. width: (StringConstructor | NumberConstructor)[];
  452. maxWidth: (StringConstructor | NumberConstructor)[];
  453. minWidth: (StringConstructor | NumberConstructor)[];
  454. appendIcon: vue.PropType<IconValue>;
  455. centerAffix: {
  456. type: BooleanConstructor;
  457. default: boolean;
  458. };
  459. prependIcon: vue.PropType<IconValue>;
  460. hideDetails: vue.PropType<boolean | "auto">;
  461. hideSpinButtons: BooleanConstructor;
  462. hint: StringConstructor;
  463. persistentHint: BooleanConstructor;
  464. messages: {
  465. type: vue.PropType<string | readonly string[]>;
  466. default: () => never[];
  467. };
  468. direction: {
  469. type: vue.PropType<"horizontal" | "vertical">;
  470. default: string;
  471. validator: (v: any) => boolean;
  472. };
  473. 'onClick:prepend': vue.PropType<(args_0: MouseEvent) => void>;
  474. 'onClick:append': vue.PropType<(args_0: MouseEvent) => void>;
  475. height: {
  476. type: (StringConstructor | NumberConstructor)[];
  477. default: string;
  478. };
  479. }, vue.ExtractPropTypes<{
  480. trueIcon: {
  481. type: vue.PropType<IconValue>;
  482. default: string;
  483. };
  484. falseIcon: {
  485. type: vue.PropType<IconValue>;
  486. default: string;
  487. };
  488. type: {
  489. type: StringConstructor;
  490. default: string;
  491. };
  492. name: StringConstructor;
  493. inline: BooleanConstructor;
  494. error: BooleanConstructor;
  495. id: StringConstructor;
  496. color: StringConstructor;
  497. style: {
  498. type: vue.PropType<vue.StyleValue>;
  499. default: null;
  500. };
  501. disabled: {
  502. type: vue.PropType<boolean | null>;
  503. default: null;
  504. };
  505. readonly: {
  506. type: vue.PropType<boolean | null>;
  507. default: null;
  508. };
  509. class: vue.PropType<ClassValue>;
  510. theme: StringConstructor;
  511. modelValue: null;
  512. density: {
  513. type: vue.PropType<Density>;
  514. default: string;
  515. validator: (v: any) => boolean;
  516. };
  517. ripple: {
  518. type: vue.PropType<RippleDirectiveBinding["value"]>;
  519. default: boolean;
  520. };
  521. defaultsTarget: StringConstructor;
  522. valueComparator: {
  523. type: vue.PropType<typeof deepEqual>;
  524. default: typeof deepEqual;
  525. };
  526. focused: BooleanConstructor;
  527. 'onUpdate:focused': vue.PropType<(args_0: boolean) => void>;
  528. errorMessages: {
  529. type: vue.PropType<string | readonly string[] | null>;
  530. default: () => never[];
  531. };
  532. maxErrors: {
  533. type: (StringConstructor | NumberConstructor)[];
  534. default: number;
  535. };
  536. label: StringConstructor;
  537. rules: {
  538. type: vue.PropType<readonly ValidationRule[]>;
  539. default: () => never[];
  540. };
  541. validateOn: vue.PropType<ValidationProps["validateOn"]>;
  542. validationValue: null;
  543. width: (StringConstructor | NumberConstructor)[];
  544. maxWidth: (StringConstructor | NumberConstructor)[];
  545. minWidth: (StringConstructor | NumberConstructor)[];
  546. appendIcon: vue.PropType<IconValue>;
  547. centerAffix: {
  548. type: BooleanConstructor;
  549. default: boolean;
  550. };
  551. prependIcon: vue.PropType<IconValue>;
  552. hideDetails: vue.PropType<boolean | "auto">;
  553. hideSpinButtons: BooleanConstructor;
  554. hint: StringConstructor;
  555. persistentHint: BooleanConstructor;
  556. messages: {
  557. type: vue.PropType<string | readonly string[]>;
  558. default: () => never[];
  559. };
  560. direction: {
  561. type: vue.PropType<"horizontal" | "vertical">;
  562. default: string;
  563. validator: (v: any) => boolean;
  564. };
  565. 'onClick:prepend': vue.PropType<(args_0: MouseEvent) => void>;
  566. 'onClick:append': vue.PropType<(args_0: MouseEvent) => void>;
  567. height: {
  568. type: (StringConstructor | NumberConstructor)[];
  569. default: string;
  570. };
  571. }>>;
  572. type VRadioGroup = InstanceType<typeof VRadioGroup>;
  573. export { VRadioGroup };