import React from 'react'; import { ISection } from '../Section/Section'; import { IValueBreakpoints, IPropsAny } from '../types'; export interface ISectionTextMedia extends ISection { title?: string | Partial>; description?: string | Partial>; button?: { text?: any; to?: string; link?: string; props?: any; }; mediaPosition?: 'top' | 'left' | 'right' | 'bottom'; media?: any; MainProps?: IPropsAny; TitleProps?: IPropsAny; WrapperProps?: IPropsAny; WrapperMainProps?: IPropsAny; WrapperTextProps?: IPropsAny; DescriptionProps?: IPropsAny; MediaProps?: IPropsAny; ImageProps?: IPropsAny; AudioProps?: IPropsAny; VideoProps?: IPropsAny; OtherProps?: IPropsAny; } declare const SectionTextMedia: React.FC; export default SectionTextMedia;