import { type CSSProperties } from 'react'; import { type PreviewProps } from './interface'; export interface IMediaProps { type: 'image' | 'video'; style?: CSSProperties; canDownload?: boolean; fileName?: string; src: string; preview?: false | PreviewProps; width?: number; height?: number; className?: string; } declare const Media: { (props: IMediaProps): import("react/jsx-runtime").JSX.Element; PreviewGroup: ({ className, style, itemStyle, items, preview, columns, }: import("./preview_group").IPreviewGroupProps) => import("react/jsx-runtime").JSX.Element; }; export default Media;