import { PopoverMenuProps } from '@wix/design-system'; import React from 'react'; import { ActionSubitem } from '../ActionControl'; export interface MultiBulkActionToolbarProps { /** * List of primary actions. Primary actions are displayed as individual buttons. * @overrideType [ActionSubitem[]](./?path=/story/common-types--actionsubitem) * @external */ primaryActionItems?: ActionSubitem[]; /** * List of secondary actions. Secondary actions are displayed when clicking the More Actions menu. * Secondary actions can be grouped by using an array of arrays, and a divider will be added between each group. * @external * @overrideType [ActionSubitem[]](./?path=/story/common-types--actionsubitem) | [ActionSubitem[][]](./?path=/story/common-types--actionsubitem) */ secondaryActionItems?: ActionSubitem[] | ActionSubitem[][]; /** * [PopoverMenu](https://www.docs.wixdesignsystem.com/?path=/story/components-overlays--popovermenu) props to pass to the 'More Action' popover menu. * @external */ secondaryActionsPopoverMenuProps?: Partial; /** * This ID is used to specify the target container for [dashboard menu plugin](./?path=/story/features-enrich-slots-and-plugins--slots-and-plugins) items. */ containerId?: string; /** * This prop is used to pass additional properties that can be used on the onClick of the container's extensions menu items. */ containerProps?: Record; } declare function _MultiBulkActionToolbar(props: MultiBulkActionToolbarProps): React.JSX.Element; export declare const MultiBulkActionToolbar: typeof _MultiBulkActionToolbar & { displayName: string; }; export {}; //# sourceMappingURL=MultiBulkActionToolbar.d.ts.map