import type { ExtractPropTypes } from 'vue'
export declare const tabProps: {
  /**
   * 唯一标识符
   */
  name: (NumberConstructor | StringConstructor)[]
  /**
   * tab的标题
   */
  title: StringConstructor
  /**
   *  是否禁用，无法点击
   */
  disabled: {
    type: BooleanConstructor
    default: boolean
  }
  customStyle: {
    type: import('vue').PropType<string>
    default: string
  }
  customClass: {
    type: import('vue').PropType<string>
    default: string
  }
}
export type TabProps = ExtractPropTypes<typeof tabProps>
