import React from 'react'; import type { CommonComponentProps, ModifierClassProp } from '../types'; import type { GetRef } from '../utils/refs'; import { type CommonMenuItemProps } from './common_menu_item'; interface SharedMenuLinkProps extends Pick { } interface MenuLinkProps extends CommonComponentProps, ModifierClassProp, SharedMenuLinkProps { active?: boolean; children?: React.ReactNode; color?: string; disabled?: boolean; getRef?: GetRef; href?: string; id?: string; component?: 'a' | React.ComponentType; name?: string; onClick?: React.MouseEventHandler; refProp?: string; rel?: string; selected?: boolean; sortable?: boolean; target?: string; to?: string | Record; wrapWithLI?: boolean; } export declare function MenuLink({ _modifierClass, active, 'aria-label': ariaLabel, 'aria-labelledby': ariaLabelledby, 'aria-describedby': ariaDescribedby, children, color, component, disabled, getRef, id, name, onClick, refProp, rel, selected, sortable, target, to, wrapWithLI, ...rest }: MenuLinkProps): React.JSX.Element; export {};