import * as React from 'react';
export interface Props {
    active?: boolean;
    activeChild?: boolean;
    to?: string;
    hasMore?: boolean;
    children: React.ReactNode;
    onClick?: () => void;
    onMouseDown?: () => void;
}
export declare const MenuItem: React.FC<Props>;
