import { HTMLProps } from 'react';

export interface LogotypeProps extends HTMLProps<HTMLImageElement> {}

export default function Logotype(props: LogotypeProps): JSX.Element;