import * as React from 'react'; interface DatacampLogoProps extends React.SVGProps { height?: number; logomarkColor?: string; showWordmark?: boolean; wordmarkColor?: string; } declare const DatacampLogo: ({ height, logomarkColor, showWordmark, wordmarkColor, ...svgProps }: DatacampLogoProps) => React.ReactElement; export default DatacampLogo;