import { type ExtractPropTypes, type InjectionKey } from 'vue'
export type CelllGroupProvide = {
  props: {
    border?: boolean
  }
}
export declare const CELL_GROUP_KEY: InjectionKey<CelllGroupProvide>
export declare const cellGroupProps: {
  /**
   * 分组标题
   */
  title: StringConstructor
  /**
   * 分组右侧内容
   */
  value: StringConstructor
  /**
   * 分组启用插槽
   */
  useSlot: {
    type: BooleanConstructor
    default: boolean
  }
  /**
   * 是否展示边框线
   */
  border: {
    type: BooleanConstructor
    default: boolean
  }
  customStyle: {
    type: import('vue').PropType<string>
    default: string
  }
  customClass: {
    type: import('vue').PropType<string>
    default: string
  }
}
export type CellGroupProps = ExtractPropTypes<typeof cellGroupProps>
