import { SvgProps } from "../Svg"; interface IntegrationLogoSvgProps extends SvgProps { logo?: string; color?: string; square?: boolean; size?: number; } declare const IntegrationLogoSvg: ({ logo, ...rest }: IntegrationLogoSvgProps) => JSX.Element; export default IntegrationLogoSvg;