import type { ExtractPropTypes } from 'vue'; import type TabsContent from '../tabs-content'; export declare const tabsContentProps: { count: { readonly type: import("vue").PropType; readonly required: true; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; inited: BooleanConstructor; animated: BooleanConstructor; duration: { readonly type: import("vue").PropType>; readonly required: true; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; swipeable: BooleanConstructor; lazyRender: BooleanConstructor; currentIndex: { readonly type: import("vue").PropType; readonly required: true; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; }; export type TabsContentProps = ExtractPropTypes; export type TabsContentInstance = InstanceType;