import React from "react"; import type { RoleManagementPageProps } from "./RoleManagementPage.types"; /** * RoleManagementPage Component * * Manage custom roles with CRUD operations. * Shows default roles as read-only, allows full management of custom roles. */ declare const RoleManagementPage: React.FC; export default RoleManagementPage;