export interface MenuItemDownloadLinkProps {
    href: string;
    downloadFileName: string;
    label: string;
    shortDescription?: string;
    onClick?: () => void;
    autoFocus?: boolean;
    compact?: boolean;
}
export declare const MenuItemDownloadLink: import("react").ForwardRefExoticComponent<MenuItemDownloadLinkProps & import("react").RefAttributes<HTMLAnchorElement>>;
