import { type CSSProperties } from 'react'; export interface IPreviewGroupProps { items: Array<{ src: string; fileName?: string; type: 'image' | 'video'; canDownload?: boolean; }>; style?: CSSProperties; itemStyle?: CSSProperties; className?: string; columns?: number; preview?: false | { visible?: boolean; getContainer?: false | HTMLElement | (() => HTMLElement); showOperation?: boolean; }; } declare const PreviewGroup: ({ className, style, itemStyle, items, preview, columns, }: IPreviewGroupProps) => import("react/jsx-runtime").JSX.Element; export default PreviewGroup;