export interface Menu {
    menu?: any;
    style?: object;
    scale?: number;
    show?: "desktop" | "laptop" | "tablet" | "mobile";
    hide?: "desktop" | "laptop" | "tablet" | "mobile";
}
export interface MenuItem {
    align?: "left" | "center" | "right";
    menu?: any;
    direction: "row" | "col";
    show?: "desktop" | "laptop" | "tablet" | "mobile";
    hide?: "desktop" | "laptop" | "tablet" | "mobile";
}
export default function Menu(props: Menu): any;
//# sourceMappingURL=Menu.d.ts.map