/** * A builder method that returns the destination object for navigating to the Products List page in the dashboard. * @dashobardPageBuilder */ declare function productsList(): PageBuilderResult; interface PageBuilderResult { pageId: string; relativeUrl?: string; } type dashboardPageBuilders_PageBuilderResult = PageBuilderResult; declare const dashboardPageBuilders_productsList: typeof productsList; declare namespace dashboardPageBuilders { export { type dashboardPageBuilders_PageBuilderResult as PageBuilderResult, dashboardPageBuilders_productsList as productsList }; } /** * @pageName Inventory * @slotType dashboard plugin */ type InventoryBannerParams = {}; /** * @pageName Inventory * @slotType dashboard menu plugin */ type InventoryItemsBulkMoreActionsMenuParams = BulkActionMenuSlotProps; /** @internal */ type BulkActionMenuSlotProps = { total: number; uncheckedIds: string[]; allSelected: boolean; selectedIds: string[]; }; /** * @pageName Inventory * @slotType dashboard menu plugin */ type InventoryMainMoreActionsMenuParams = {}; /** * @pageName Inventory * @slotType dashboard menu plugin */ type InventoryItemMoreActionsMenuParams = SingleItemMenuSlotProps; /** @internal */ type SingleItemMenuSlotProps = { selectedId: string[]; }; type _59a8855e515a49c1894a035731d2fd44_BulkActionMenuSlotProps = BulkActionMenuSlotProps; type _59a8855e515a49c1894a035731d2fd44_InventoryBannerParams = InventoryBannerParams; type _59a8855e515a49c1894a035731d2fd44_InventoryItemMoreActionsMenuParams = InventoryItemMoreActionsMenuParams; type _59a8855e515a49c1894a035731d2fd44_InventoryItemsBulkMoreActionsMenuParams = InventoryItemsBulkMoreActionsMenuParams; type _59a8855e515a49c1894a035731d2fd44_InventoryMainMoreActionsMenuParams = InventoryMainMoreActionsMenuParams; type _59a8855e515a49c1894a035731d2fd44_SingleItemMenuSlotProps = SingleItemMenuSlotProps; declare namespace _59a8855e515a49c1894a035731d2fd44 { export type { _59a8855e515a49c1894a035731d2fd44_BulkActionMenuSlotProps as BulkActionMenuSlotProps, _59a8855e515a49c1894a035731d2fd44_InventoryBannerParams as InventoryBannerParams, _59a8855e515a49c1894a035731d2fd44_InventoryItemMoreActionsMenuParams as InventoryItemMoreActionsMenuParams, _59a8855e515a49c1894a035731d2fd44_InventoryItemsBulkMoreActionsMenuParams as InventoryItemsBulkMoreActionsMenuParams, _59a8855e515a49c1894a035731d2fd44_InventoryMainMoreActionsMenuParams as InventoryMainMoreActionsMenuParams, _59a8855e515a49c1894a035731d2fd44_SingleItemMenuSlotProps as SingleItemMenuSlotProps }; } /** * @pageName Products * @slotType dashboard plugin */ type ProductsBannerParams = {}; /** * @pageName Products * @slotType dashboard menu plugin */ type ProductsMainMoreActionsMenuParams = {}; /** * @pageName Products * @slotType dashboard menu plugin */ type ProductItemMoreActionsMenuParams = MenuSingleItem; /** @internal */ interface MenuSingleItem { id: string; } /** * @pageName Products * @slotType dashboard menu plugin */ type ProductItemsBulkMoreActionsMenuParams = {}; type c821a77685a94340Ae94E08876c99944_MenuSingleItem = MenuSingleItem; type c821a77685a94340Ae94E08876c99944_ProductItemMoreActionsMenuParams = ProductItemMoreActionsMenuParams; type c821a77685a94340Ae94E08876c99944_ProductItemsBulkMoreActionsMenuParams = ProductItemsBulkMoreActionsMenuParams; type c821a77685a94340Ae94E08876c99944_ProductsBannerParams = ProductsBannerParams; type c821a77685a94340Ae94E08876c99944_ProductsMainMoreActionsMenuParams = ProductsMainMoreActionsMenuParams; declare namespace c821a77685a94340Ae94E08876c99944 { export type { c821a77685a94340Ae94E08876c99944_MenuSingleItem as MenuSingleItem, c821a77685a94340Ae94E08876c99944_ProductItemMoreActionsMenuParams as ProductItemMoreActionsMenuParams, c821a77685a94340Ae94E08876c99944_ProductItemsBulkMoreActionsMenuParams as ProductItemsBulkMoreActionsMenuParams, c821a77685a94340Ae94E08876c99944_ProductsBannerParams as ProductsBannerParams, c821a77685a94340Ae94E08876c99944_ProductsMainMoreActionsMenuParams as ProductsMainMoreActionsMenuParams }; } declare namespace dashboardPagesPluginProps { export { _59a8855e515a49c1894a035731d2fd44 as Inventory, c821a77685a94340Ae94E08876c99944 as Products }; } declare namespace dashboard { export { dashboardPageBuilders as pages, dashboardPagesPluginProps as plugins }; } export { dashboard as d, dashboardPageBuilders as pages, dashboardPagesPluginProps as plugins };