import React from 'react';
import { ISection } from '../Section/Section';
import { IValueBreakpoints, IPropsAny } from '../types';
export declare type ISectionTextMedia = ISection & {
    title?: string | Partial<Record<IValueBreakpoints, string>>;
    description?: string | Partial<Record<IValueBreakpoints, string>>;
    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<ISectionTextMedia>;
export default SectionTextMedia;
