/** * Class Page Component * * Uses the generic component factory pattern with class-specific configuration. * Receives all UI label strings as pre-translated props from the caller, * so this component is translation-agnostic. * * Key responsibilities: * - Define table column layout and row body column types * - Build the module config (via factory) wiring passed label strings and content slots * - Delegate header/row actions and navigation to the context hook * - Apply RBAC guard before rendering class content * - Pass the self-contained context directly to the generic page factory * * Exported utilities: * - `ClassPage` — root component that wraps with ClassProvider */ import { FC } from "react"; import { USER_ROLE } from "../../type"; interface Props { cancelLabel: string; drawerFilterDescription: string; drawerFilterTitle: string; drawerFormDescription: string; drawerFormTitle: string; drawerMoreActionsDescription: string; drawerMoreActionsTitle: string; drawerViewDescription: string; drawerViewTitle: string; labelActions: string; labelCode: string; labelDescription: string; labelEnabled: string; labelId: string; labelName: string; saveLabel: string; searchPlaceholder: string; tableDescription: string; tableTitle: string; userRole: USER_ROLE; } export declare const ClassPage: FC; export {};