export declare type BulkUpdatePayload = { data: Record[]; changes: Record; }; /** * @registeredEvent * @title Bulk update - Boolean and Enums * @description allows to modify enums or boolean values from an array of items * @payload { * data: { * [key: string]: any * }[], * changes: { * [key: string]: string | boolean * }[] * } */ export declare const bulkUpdate: import("../factory").Factory;