/**
 * Interface representing an action status for permission check.
 */
export interface ActionStatus {
    can: boolean;
    message: string;
    url?: string;
    routerLink?: string[];
    type?: string | undefined | null;
}
