1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| import { AllowedComponentProps, VNodeProps } from './_common'
|
| declare interface CellGroupProps {
| /**
| * 分组标题
| */
| title?: string
| /**
| * 是否显示外边框
| * @default true
| */
| border?: boolean
| /**
| * 用户自定义外部样式,对象形式
| */
| customStyle?: unknown
| }
|
| declare interface _CellGroup {
| new (): {
| $props: AllowedComponentProps &
| VNodeProps &
| CellGroupProps
| }
| }
|
| export declare const CellGroup: _CellGroup
|
|