import { FC } from 'react'; import './index.less'; import { LocaleFunction } from '@lingxiteam/types'; export interface BannerModalProps { visible?: boolean; onClose?: () => void; onComplete?: () => void; isEnableWaterMark?: boolean; fileObj?: any; fileList?: any[]; fileIndex?: number; appId?: any; pageId?: any; viewMode: 'newTab' | 'popUp' | 'window'; modalWidth?: number | string; modalHeight?: number | string; localPreviewUrl?: string; getLocale: LocaleFunction; language: string; previewIsShowPage?: boolean; } interface BMFC extends FC { open: (props: Omit) => void; } declare const BannerModal: BMFC; export default BannerModal;