export interface LogoProps {
    organization?: "fchh" | "frbs";
    lightColor?: boolean;
    monotone?: boolean;
    alt?: string;
    className?: string;
    id?: string;
}
export declare function Logo({ lightColor, monotone, alt, className, organization, id, }: LogoProps): import("react/jsx-runtime").JSX.Element;
