import { ReactNode } from "react"; import { PRODUCT_ID } from "../../types"; declare type AppbarProductMenuProps = { currentProductId: PRODUCT_ID; disabled?: boolean; }; declare type AppbarProductMenuItemProps = { children: ReactNode; href: string; }; export declare const AppbarProductMenuItem: ({ children, href, }: AppbarProductMenuItemProps) => JSX.Element; export declare const AppbarProductMenu: (props: AppbarProductMenuProps) => JSX.Element; export {};