import { BladeMenuNavigationNode } from "../../models";
import { TsxAllowUnknowProperties } from "..";
export interface IMenuBlade {
    /**
     * Blade title
     * */
    title: string;
    /**
     * Parent Navigation Node Key
     * */
    navigationNodeKey: string;
    /**
     * Selected a menu node callback
     * */
    onNodeSelected: (node: BladeMenuNavigationNode) => void;
}
declare global {
    namespace VueTsxSupport.JSX {
        interface Element {
        }
        interface ElementClass {
        }
        interface ElementAttributesProperty {
        }
        interface IntrinsicElements {
            "omfx-blade-menu": TsxAllowUnknowProperties<IMenuBlade>;
        }
    }
}
