import * as React from 'react';
import { type ContextTitleProps } from './ContextTitle';
import type { PopupControlledProps } from '../Popup/PopupControlled';
export interface ContextTitleNestedProps extends ContextTitleProps {
    open?: PopupControlledProps['open'];
    left?: boolean;
    renderPane?: PopupControlledProps['renderContext'];
}
/**
 * Renders a {@link ContextTitle} which has a nested sub-menu.
 */
export declare const ContextTitleNested: React.FC<ContextTitleNestedProps>;
