import { ActionBarDropdownMenuItem } from '../providers/nav-builder/nav-builder-types'; /** * @description * Adds a dropdown menu item to the ActionBar at the top right of each list or detail view. The locationId can * be determined by pressing `ctrl + u` when running the Admin UI in dev mode. * * @example * ```ts title="providers.ts" * import { addActionBarDropdownMenuItem } from '\@vendure/admin-ui/core'; * * export default [ * addActionBarDropdownMenuItem({ * id: 'print-invoice', * label: 'Print Invoice', * locationId: 'order-detail', * routerLink: ['/extensions/invoicing'], * }), * ]; * ``` * * @since 2.2.0 * @docsCategory action-bar */ export declare function addActionBarDropdownMenuItem(config: ActionBarDropdownMenuItem): import("@angular/core").EnvironmentProviders;