import React from 'react';
export interface MenuTargetProps {
    /** Target element */
    children: React.ReactNode;
    /** Key of the prop that should be used to get element ref */
    refProp?: string;
}
export declare const MenuTarget: React.ForwardRefExoticComponent<MenuTargetProps & React.RefAttributes<HTMLElement>>;
