5bf15026b8588da65b704fa0a5feeb5a0c0af33136158a07a3cac246f248ebf9600f003fb7a6ce8e43d866c23f90b2b171b1025644079084c4aa097ec4d0b7 917 B

1234567891011121314151617181920212223242526272829
  1. declare function __VLS_template(): {
  2. default?(_: {}): any;
  3. };
  4. declare const __VLS_component: import("vue").DefineComponent<{
  5. /**
  6. * @description height of the footer
  7. */
  8. height: {
  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 height of the footer
  15. */
  16. height: {
  17. type: StringConstructor;
  18. default: null;
  19. };
  20. }>>, {
  21. height: 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. };