import { ReactElement } from 'react'; export interface LogoProps { children: string; height?: string; href?: string; image?: string; width?: string; } declare const Logo: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLAnchorElement>, LogoProps>>; declare type Logo = ReactElement; export default Logo;