/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { KendoReactComponentBaseProps } from '@progress/kendo-react-common';
import * as React from 'react';
/**
 * The properties of the KendoReact MenuItemLink component.
 */
export interface MenuItemLinkProps extends KendoReactComponentBaseProps {
    /**
     * Specifies whether the MenuItemLink component is opened.
     */
    opened: boolean;
    /**
     * Sets the URL of the MenuItemLink component.
     */
    url?: string;
}
export declare const MenuItemLink: (props: MenuItemLinkProps) => React.JSX.Element;
