import React from 'react'; import { ISection } from '../Section/Section'; import { IMediaObject, IPropsAny } from '../types'; export interface ISectionMedia extends ISection { value?: IMediaObject; size?: 'small' | 'regular' | 'large'; name?: boolean; IconDocument?: any; MediaProps?: IPropsAny; ImageProps?: IPropsAny; AudioProps?: IPropsAny; VideoProps?: IPropsAny; OtherProps?: IPropsAny; } declare const Element: React.FC; export default Element;