export type GlobalMenuRenderInternalLink = (props: { href: string; children: React.ReactNode; }) => React.JSX.Element; interface MenuItem { text: string; href: string; count?: number; } interface MenuGroup { group: string; items: (MenuItem | MenuGroup)[]; } export interface GlobalMenuProps { /** * 最初にメニューを開いておくかどうかを指定します。 * ただし、モバイルでは指定に関わらず閉じられます。 * @default true */ defaultOpen?: boolean; items?: MenuGroup[]; headerItems?: React.ReactNode; children?: React.ReactNode; logo?: React.ReactNode; renderInternalLink: (props: { href: string; children: React.ReactNode; }) => React.JSX.Element; } export declare const GlobalMenu: (props: GlobalMenuProps) => import("@emotion/react/jsx-runtime").JSX.Element; export {};