/// <reference types="react" />
import { PureComponent } from 'react';
export interface Props {
    content: string;
    elemAfter?: string;
}
export default class AdvanceMenuItem extends PureComponent<Props, any> {
    render(): JSX.Element;
}
