import React from 'react'; import './index.less'; export interface TabProductProps { list?: any[]; scrollDom?: string; renderItem?: (item: any) => React.ReactNode; rowKey?: string; tabsWrapClassName?: string; categoryWrapClassName?: string; listWrapClassName?: string; warpClassName?: string; stickyTop?: number; name?: string | number; } declare const TabProduct: (props: TabProductProps) => React.JSX.Element; export default TabProduct;