export declare const MENU_CLASSNAME = "k-menu";
export type KendoMenuProps = {
    orientation?: 'horizontal' | 'vertical';
    header?: boolean | null;
    scrollable?: boolean;
    scrollButtonsPosition?: "around" | "start" | "end";
    wrapperStyles?: React.CSSProperties;
    dir?: "rtl" | "ltr";
    popup?: React.JSX.Element;
};
export declare const Menu: {
    (props: KendoMenuProps & React.HTMLAttributes<HTMLUListElement>): import("react/jsx-runtime").JSX.Element;
    states: any[];
    options: {};
    className: string;
    defaultOptions: {
        orientation: string;
        header: boolean;
        scrollButtonsPosition: string;
    };
};
export default Menu;
