import type { RefObject } from 'react'; import React from 'react'; import type { NativeProps } from '@zbanx/mobile-utils'; import type { VideoAnalyticsProps } from './components/videoAnalytics'; import './creatorDetails.less'; export interface CreatorDetailsProps extends NativeProps, Pick { scrollRef: HTMLElement | RefObject | null; channelId: number; } declare const CreatorDetails: React.NamedExoticComponent; export default CreatorDetails;