import React from 'react'; import type { NativeProps } from '@zbanx/mobile-utils'; import './index.less'; import type { BasicTarget } from 'ahooks/es/utils/domTarget'; export interface CreatorVideoProps extends NativeProps { type: 'brand' | 'productLine'; scrollRef: BasicTarget; params: { channelId: number; brandId?: number; productLineId?: number; }; } declare const CreatorVideo: React.NamedExoticComponent; export default CreatorVideo;