import type { ReactNode } from 'react';
export interface MarketingHeaderLogoProps {
    mark?: ReactNode;
    word?: ReactNode;
    href?: string;
    /** Accessible name for the logo link. Falls back to `word` if it's a string, then to "Home". */
    label?: string;
    className?: string;
}
export declare function MarketingHeaderLogo({ mark, word, href, label, className, }: MarketingHeaderLogoProps): import("react/jsx-runtime").JSX.Element;
