import { FC } from 'react'; import { ImageInfo } from './create-preview'; export declare const ANIMATE_STATUS: { readonly EXITED: "exited"; readonly ENTERING: "entering"; readonly ENTERED: "entered"; readonly EXITING: "exiting"; }; export type AnimateStatus = typeof ANIMATE_STATUS[keyof typeof ANIMATE_STATUS]; export interface PreviewProps { currentKey: ImageInfo['key'] | null; imageList: ImageInfo[]; onClose?: () => void; animateStatus: AnimateStatus; } export declare const Preview: FC;