import React from 'react'; export interface LogoProps extends React.SVGProps { width?: string; height?: string; negative?: boolean; } declare const Logo: { ({ negative, ...rest }: LogoProps): JSX.Element; defaultProps: { negative: boolean; height: string; width: string; }; }; export default Logo;