/** * Campus Page Component * * Uses the generic component factory pattern with campus-specific configuration. * Receives all UI label strings as pre-translated props from the caller, * so this component is translation-agnostic. * * Exported utilities: * - `CampusPage` — root component that wraps with CampusProvider */ 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; labelCity: string; labelCode: string; labelEnabled: string; labelId: string; labelName: string; saveLabel: string; searchPlaceholder: string; tableDescription: string; tableTitle: string; userRole: USER_ROLE; } export declare const CampusPage: FC; export {};