/** * Section Page Component * * Uses the generic component factory pattern with section-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 section content * - Pass the self-contained context directly to the generic page factory * * Exported utilities: * - `SectionPage` — root component that wraps with SectionProvider */ import { FC } from "react"; import { USER_ROLE } from "../../type"; interface Props { drawerButtonCancel: string; drawerButtonSave: string; drawerFilterDescription: string; drawerFilterTitle: string; drawerFormDescription: string; drawerFormTitle: string; drawerMoreActionsDescription: string; drawerMoreActionsTitle: string; drawerViewDescription: string; drawerViewTitle: string; tableColumnHeaderActions: string; tableColumnHeaderCapacity: string; tableColumnHeaderEnabled: string; tableColumnHeaderId: string; tableColumnHeaderName: string; tableDescription: string; tableSearchPlaceholder: string; tableTitle: string; userRole: USER_ROLE; } export declare const SectionPage: FC; export {};