interface Permission {
  can: (permission: string) => boolean;
}

export function usePermission(): Permission {
  return {
    can: (_permission: string) => {
      // For now, return true for all permissions
      // In a real app, this would check user permissions from backend
      return true;
    }
  };
}
