export interface LogoProps { textColor?: string; text?: string; } export default function ({ textColor, text }: LogoProps): JSX.Element;