import { type HTMLAttributes } from "react"; export interface LogoProps extends HTMLAttributes { size?: "sm" | "md" | "lg"; showText?: boolean; } export declare const Logo: import("react").ForwardRefExoticComponent>;