/** @alpha */
export type NestMenuHandler = (expanded: boolean) => void;
/** @alpha */
export interface NestedMenuProps {
    id?: string;
    label?: string;
    parent?: HTMLElement;
    expand?: boolean;
    handler?: NestMenuHandler;
    body?: HTMLElement;
}
/** @alpha */
export interface NestedMenu {
    div: HTMLDivElement;
    label: HTMLLabelElement;
    body: HTMLElement;
}
/** @alpha */
export declare function createNestedMenu(props: NestedMenuProps): NestedMenu;
//# sourceMappingURL=NestedMenu.d.ts.map