/** * Bulk Operations Page Component * * Thin wrapper around GenericModulePage. All handlers, header actions, and row * actions live in context.tsx — this file only owns: * - tableBodyCols (static, module-level constant) * - bulkOperationsConfig (memoised on locale + drawer change only) * - permission guard * * Exported utilities: `BulkOperationsPage` */ import { FC } from "react"; import { USER_ROLE } from "../../type"; interface Props { cancelLabel: string; drawerFilterDescription: string; drawerFilterTitle: string; drawerViewDescription: string; drawerViewTitle: string; labelActions: string; labelExpiresIn: string; labelId: string; labelProgress: string; labelState: string; labelStatus: string; labelType: string; saveLabel: string; searchPlaceholder: string; tableDescription: string; tableTitle: string; userRole: USER_ROLE; } export declare const BulkOperationsPage: FC; export {};