import React from 'react'; import { type MenusServiceConfig } from '@wix/headless-restaurants-menus/services'; declare enum TestIds { menusRoot = "menus-root" } /** * Menus.Root * Container for the menus context and data loading. * Does not render if there are no menus. */ export interface MenusRootProps { children: React.ReactNode; config: MenusServiceConfig; } export declare const Root: { (props: MenusRootProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export declare const OLOMenus: { Root: { (props: MenusRootProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; TestIds: typeof TestIds; }; export {};