import React, { SVGProps } from 'react'; type SvgDfdsLogoProps = SVGProps & { title?: string; }; declare const SvgDfdsLogo: ({ title, ...props }: SvgDfdsLogoProps) => React.JSX.Element; export default SvgDfdsLogo;