import React from 'react';
import { ISection } from '../Section/Section';
import { IMediaObject, IPropsAny } from '../types';
export declare type ISectionLogos = ISection & {
    values?: IMediaObject[];
    version?: 'regular';
    size?: 'small' | 'regular' | 'large';
    gray?: boolean;
    name?: boolean;
    ItemProps?: IPropsAny;
    WrapperProps?: IPropsAny;
};
declare const Element: React.FC<ISectionLogos>;
export default Element;
