/** * School Page Component * * Single-entity page rendering school details view and edit drawer. * All state and handlers live in context.tsx via `useSchoolModule()`. * * Key responsibilities: * - Apply RBAC guard before rendering school content * - Render the school view card and edit/more-actions drawer * - Delegate all actions to context handlers * * Exported utilities: * - `SchoolPage` — root component that wraps with SchoolProvider */ import { FC } from "react"; import { USER_ROLE } from "../../type"; interface Props { pageTitle: string; pageDescription: string; labelEdit: string; userRole: USER_ROLE; } export declare const SchoolPage: FC; export {};