import type { ComponentInterface } from '../../stencil-public-runtime'; export declare class JackeryTabContent implements ComponentInterface { /** * tab 显示名称 */ label: string; /** * tab 匹配名称(和 activekey 匹配) */ name: string; /** * tab 禁用状态 */ disabled: boolean; /** * 当前是否选中 */ active: boolean; render(): any; }