import { FC } from "react"; import { SecLevelEndpoint } from "../../api/portal"; /** * Endpoint needs to be dynamic because it's different between * portal and webmaps (but works exactly the same way across both, unlike Accounts/Webmaps that have * a different logic in the portal than in the webmap backends) */ interface SecLevelsTableProps { endpoint: SecLevelEndpoint; } declare const SecLevelsTable: FC; export default SecLevelsTable;