import React from 'react';
type Company = {
    name: string;
    img: string;
};
interface CompaniesProps {
    title: any;
    companyGallery: Company;
    className?: string;
    style?: React.CSSProperties;
}
export declare const CompanyGallery: React.FC<CompaniesProps>;
export {};
