import React from 'react'; import type { NativeProps } from '@zbanx/mobile-utils'; import type { TableListProps } from '../../'; import type { Option } from '../filter/type'; import './categoryPage.less'; export interface CategoryPageProps extends NativeProps, Pick, 'scrollRef'> { onToCreatorList?: (type: 'brand' | 'productLine', params: Option) => void; } declare const CategoryPage: React.NamedExoticComponent; export default CategoryPage;