index.d.ts 1.0 KB

123456789101112131415161718192021222324252627
  1. export declare const CellGroup: import("../utils").WithInstall<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
  2. title: StringConstructor;
  3. inset: BooleanConstructor;
  4. border: {
  5. type: BooleanConstructor;
  6. default: true;
  7. };
  8. }>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
  9. title: StringConstructor;
  10. inset: BooleanConstructor;
  11. border: {
  12. type: BooleanConstructor;
  13. default: true;
  14. };
  15. }>> & Readonly<{}>, {
  16. inset: boolean;
  17. border: boolean;
  18. }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
  19. export default CellGroup;
  20. export { cellGroupProps } from './CellGroup';
  21. export type { CellGroupProps } from './CellGroup';
  22. export type { CellGroupThemeVars } from './types';
  23. declare module 'vue' {
  24. interface GlobalComponents {
  25. VanCellGroup: typeof CellGroup;
  26. }
  27. }