///
import { PopoverMenuProps } from '@wix/design-system';
import { MultiBulkActionSubItem } from '../MultiBulkActionButton';
export interface MultiBulkActionToolbarProps {
/**
* @deprecated use primaryActionItems and secondaryActionItems instead
*/
actionItems?: MultiBulkActionSubItem[];
/**
* A collection of the primary actions (do not appear under the More Actions Popover Menu)
* @external
*/
primaryActionItems?: MultiBulkActionSubItem[];
/**
* A collection of the secondary actions (appear under the More Actions Popover Menu)
* @external
*/
secondaryActionItems?: MultiBulkActionSubItem[];
/**
* Custom [PopoverMenuProps](https://www.docs.wixdesignsystem.com/?path=/story/components-overlays--popovermenu) to pass to the 'More Action' popover menu
* @external
*/
secondaryActionsPopoverMenuProps?: Partial;
/**
* This ID is used to specify the target container for extension menu items.
* Read more on [Extensions](https://bo.wix.com/pages/cairo/?path=/story/guides--extensions)
* @external
*/
containerId?: string;
}
declare function _MultiBulkActionToolbar(props: MultiBulkActionToolbarProps): JSX.Element;
export declare const MultiBulkActionToolbar: typeof _MultiBulkActionToolbar & {
displayName: string;
};
export {};
//# sourceMappingURL=MultiBulkActionToolbar.d.ts.map