import React from 'react'; import type { NativeProps } from '@zbanx/mobile-utils'; import type { TableListProps } from '../../'; import './creatorList.less'; export interface CreatorListProps extends NativeProps, Pick, 'scrollRef'> { disabledFavorites?: boolean; onToCollection?: () => void; } declare const CreatorList: React.NamedExoticComponent; export default CreatorList;