@dbs-portal/module-identity
Version:
Identity management module for user and role management
12 lines • 344 B
TypeScript
/**
* Role Create Page
*/
import React from 'react';
export interface RoleCreatePageProps {
onNavigate?: (path: string) => void;
onBack?: () => void;
onRoleCreated?: (roleId: string) => void;
className?: string;
}
export declare const RoleCreatePage: React.FC<RoleCreatePageProps>;
//# sourceMappingURL=RoleCreatePage.d.ts.map