import React from 'react';
import { IMenu } from '../Menu/Menu';
export declare type IInfo = IMenu & {
    name?: string;
    title?: string;
    render?: () => any;
    Icon?: any;
    IconProps?: any;
    IconButtonProps?: any;
    TitleProps?: any;
    ContainerProps?: any;
    TooltipProps?: any;
};
declare const Info: React.FC<IInfo>;
export default Info;
