6e75943ffc17f46e656979820c7cb039e02c44e62f88baf5bc274c99dbfa7d0790ce6ba50386efb02ec7f79df0c70315e647f1a58e1ad566bd92cc1d6e1e89 924 B

1234567891011121314151617181920212223242526272829
  1. declare function __VLS_template(): {
  2. default?(_: {}): any;
  3. };
  4. declare const __VLS_component: import("vue").DefineComponent<{
  5. /**
  6. * @description width of the side section
  7. */
  8. width: {
  9. type: StringConstructor;
  10. default: null;
  11. };
  12. }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
  13. /**
  14. * @description width of the side section
  15. */
  16. width: {
  17. type: StringConstructor;
  18. default: null;
  19. };
  20. }>>, {
  21. width: string;
  22. }>;
  23. declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
  24. export default _default;
  25. type __VLS_WithTemplateSlots<T, S> = T & {
  26. new (): {
  27. $slots: S;
  28. };
  29. };