interface NoPermissionProps { /** Entity name for the message */ entityName?: string; /** Action that was attempted */ action?: 'list' | 'read' | 'create' | 'update' | 'delete'; /** Custom title */ title?: string; /** Custom description */ description?: string; /** Show back button */ showBackButton?: boolean; /** Show home button */ showHomeButton?: boolean; /** Custom redirect path */ redirectPath?: string; } /** * Component to display when user doesn't have permission to access a resource */ export declare function NoPermission({ entityName, action, title, description, showBackButton, showHomeButton, redirectPath, }: NoPermissionProps): import("react/jsx-runtime").JSX.Element; export default NoPermission; //# sourceMappingURL=NoPermission.d.ts.map