import React from 'react'; interface LogoCreditsProps { itemKey: string; useTitle?: boolean; images: Array; title?: string; className?: string; containerClassName?: string; } interface LogoImageItem { key: string; url: string; altKey: string; height?: number | string; width?: number | string; className?: string; } declare const LogoCredits: React.FC; export default LogoCredits;